diff options
Diffstat (limited to 'machines')
-rw-r--r-- | machines/owo/hardware-configuration.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/machines/owo/hardware-configuration.nix b/machines/owo/hardware-configuration.nix index b10d174..dc2966c 100644 --- a/machines/owo/hardware-configuration.nix +++ b/machines/owo/hardware-configuration.nix @@ -14,31 +14,31 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/3e066ac7-e98b-4286-8083-72c677015047"; fsType = "btrfs"; options = [ "subvol=root" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/3e066ac7-e98b-4286-8083-72c677015047"; fsType = "btrfs"; options = [ "subvol=boot" ]; }; fileSystems."/home" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/3e066ac7-e98b-4286-8083-72c677015047"; fsType = "btrfs"; options = [ "subvol=home" ]; }; fileSystems."/nix" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/3e066ac7-e98b-4286-8083-72c677015047"; fsType = "btrfs"; options = [ "subvol=nix" ]; }; fileSystems."/config" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/3e066ac7-e98b-4286-8083-72c677015047"; fsType = "btrfs"; options = [ "subvol=config" ]; }; |