diff --git a/systems/aurora.nix b/systems/aurora.nix index c5ecfa9..01b2139 100644 --- a/systems/aurora.nix +++ b/systems/aurora.nix @@ -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" ];