Update systems/aurora.nix

This commit is contained in:
jsutter 2025-11-12 17:46:30 +00:00
parent 433aa7e14e
commit e5f125ff1d

View file

@ -3,6 +3,15 @@
{
networking.hostName = "aurora";
fileSystems."/" =
{ device = "/dev/disk/by-partlabel/primary";
fsType = "btrfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-partlabel/ESP";
fsType = "vfat";
};
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ];