refactor(flake): moved host configs into their own files (again)
This commit is contained in:
parent
3cb010b3d6
commit
52ec0abb0c
3 changed files with 27 additions and 15 deletions
17
hosts/nemesis.nix
Normal file
17
hosts/nemesis.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
inputs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../configs/bootloaders/systemd-boot.nix
|
||||
../configs/filesystems/hw-nemesis.nix
|
||||
../configs/hardware/nvidia.nix
|
||||
inputs.nixos-hardware.nixosModules.gigabyte-b650
|
||||
];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue