diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-09 20:36:26 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-09 20:36:26 +0200 |
commit | 73bcf3a412fb33659f80a15199739a50bc84c964 (patch) | |
tree | 3252a117bb01556107468d1892c229d0ef599f29 /hosts | |
parent | Emacs: Initial config (diff) | |
download | nixos-config-73bcf3a412fb33659f80a15199739a50bc84c964.tar.gz nixos-config-73bcf3a412fb33659f80a15199739a50bc84c964.tar.bz2 nixos-config-73bcf3a412fb33659f80a15199739a50bc84c964.zip |
Luna: Update disk uuids
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/luna/hardware.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/hosts/luna/hardware.nix b/hosts/luna/hardware.nix index 16915e0..3c243b1 100644 --- a/hosts/luna/hardware.nix +++ b/hosts/luna/hardware.nix @@ -16,26 +16,26 @@ in }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/71B3-0F04"; + device = "/dev/disk/by-uuid/3187-3464"; fsType = "vfat"; }; fileSystems."/" = { - device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23"; + device = "/dev/disk/by-uuid/285219b7-4351-4a29-927e-7beabe7131f7"; fsType = "btrfs"; - options = [ "subvol=root" "compress-force=zstd" "noatime" ]; + options = [ "subvol=root" ]; }; - fileSystems."/nix" = { - device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23"; + fileSystems."/home" = { + device = "/dev/disk/by-uuid/6d852aa1-81de-43f5-9c45-567a68b99b0b"; fsType = "btrfs"; - options = [ "subvol=nix" "compress-force=zstd" "noatime" ]; + options = [ "subvol=home" ]; }; - fileSystems."/home" = { - device = "/dev/disk/by-uuid/d7d4ebea-7c4b-4b1b-afdf-8b39f686276e"; + fileSystems."/nix" = { + device = "/dev/disk/by-uuid/2fbd48bf-9ee6-4e60-8d65-8a89fc696655"; fsType = "btrfs"; - options = [ "subvol=home" "compress-force=zstd" ]; + options = [ "subvol=nix" ]; }; swapDevices = [ ]; |