diff options
Diffstat (limited to 'machines/biski/hardware-configuration.nix')
| -rw-r--r-- | machines/biski/hardware-configuration.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/machines/biski/hardware-configuration.nix b/machines/biski/hardware-configuration.nix index dc2e787..9010b7b 100644 --- a/machines/biski/hardware-configuration.nix +++ b/machines/biski/hardware-configuration.nix @@ -14,43 +14,43 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@root" ]; }; fileSystems."/nix" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; fileSystems."/persist" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@persist" ]; }; fileSystems."/var/log" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@log" ]; }; fileSystems."/home" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@home" ]; }; fileSystems."/swap" = - { device = "/dev/disk/by-uuid/8b016d79-af5b-4803-baa1-f1b4c1ba44b4"; + { device = "/dev/disk/by-partlabel/root"; fsType = "btrfs"; options = [ "subvol=@swap" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/E24B-30F2"; + { device = "/dev/disk/by-partlabel/boot"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; |
