diff --git a/hosts/enka/hardware.nix b/hosts/enka/hardware.nix index 52e095b..6b594a2 100644 --- a/hosts/enka/hardware.nix +++ b/hosts/enka/hardware.nix @@ -16,17 +16,17 @@ desktopSystemConfiguration { ]; fileSystems."/" = { - device = "/dev/disk/by-uuid/cc473c12-94a9-4399-a0ab-f080f9e786f6"; - fsType = "ext4"; + device = "/dev/disk/by-label/root"; + fsType = "btrfs"; }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/D1F5-D862"; + device = "/dev/disk/by-label/boot"; fsType = "vfat"; }; swapDevices = [ - { device = "/dev/disk/by-uuid/f3a15cd2-9897-4867-9414-d4a8c3e71caf"; } + { device = "/dev/disk/by-label/swap"; } ]; hardware.enableAllFirmware = true;