diff --git a/systems/LoutreOS/hardware-configuration.nix b/systems/LoutreOS/hardware-configuration.nix index 7088adc51..f234dd12d 100644 --- a/systems/LoutreOS/hardware-configuration.nix +++ b/systems/LoutreOS/hardware-configuration.nix @@ -8,15 +8,20 @@ [ ]; - boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-label/nixos"; + { device = "/dev/disk/by-uuid/6d3f76ec-e9ca-464a-96dd-5b2a305cb47d"; fsType = "ext4"; }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/5401-0EF1"; + fsType = "vfat"; + }; + fileSystems."/var/lib/acme" = { device = "loutrepool/var/acme"; fsType = "zfs"; @@ -107,11 +112,6 @@ fsType = "zfs"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-label/boot"; - fsType = "vfat"; - }; - fileSystems."/mnt/backup" = { device = "backup"; fsType = "zfs";