From e5f125ff1d02bacde1913122f7c84e740d9c0a23 Mon Sep 17 00:00:00 2001 From: jsutter Date: Wed, 12 Nov 2025 17:46:30 +0000 Subject: [PATCH] Update systems/aurora.nix --- systems/aurora.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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" ];