11 lines
287 B
Nix
11 lines
287 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
../configs/filesystems/hw-nemesis.nix
|
|
../configs/hardware/powermanagement.nix
|
|
inputs.nixos-hardware.nixosModules.gigabyte-b650
|
|
];
|
|
boot-config.bootloader = "systemd-boot";
|
|
hardware-config.cpu = "amd";
|
|
hardware-config.gpu = "nvidia";
|
|
}
|