fix hardware config for board, move some things around

This commit is contained in:
k3t
2026-06-01 18:32:49 -06:00
parent 9ae84f044f
commit 505c3629fc
4 changed files with 13 additions and 26 deletions
+10 -12
View File
@@ -8,27 +8,25 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
fileSystems."/" =
{ device = "/dev/disk/by-label/NixOS";
fsType = "btrfs";
options = [ "subvol=@" ];
};
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/home" =
{ device = "/dev/disk/by-label/NixOS";
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b17472f2-bf78-4850-abe1-f324dbb4d361";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/E0C2-A3A3";
{ device = "/dev/disk/by-uuid/894A-AE22";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
#swapDevices =
# [ { device = "/dev/disk/by-uuid/fe32f9af-3382-4505-90e3-aaf1c41bf5d4"; }
# ];
swapDevices =
[ { device = "/dev/disk/by-uuid/9d20f606-cd87-40e1-adad-c470acf0a66a"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;