commit d3a85d6aea5725d993e2a061e926ed2bd987a7e5 parent 17a054328149616624d93d19840374a4a28ed73d Author: MTRNord <mtrnord1@gmail.com> Date: Wed, 9 Aug 2023 13:02:29 +0200 Fix config Diffstat:
| M | nixos/worker-1/hardware-configuration.nix | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/nixos/worker-1/hardware-configuration.nix b/nixos/worker-1/hardware-configuration.nix @@ -16,7 +16,7 @@ fileSystems."/" = { - device = "/dev/disk/by-uuid/0bfb59e2-0156-4845-8887-043976a17dca"; + device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; fsType = "btrfs"; options = [ "subvol=root" "compress=zstd" "noatime" ]; }; @@ -25,28 +25,28 @@ fileSystems."/home" = { - device = "/dev/disk/by-uuid/0bfb59e2-0156-4845-8887-043976a17dca"; + device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; fsType = "btrfs"; options = [ "subvol=home" "compress=zstd" "noatime" ]; }; fileSystems."/nix" = { - device = "/dev/disk/by-uuid/0bfb59e2-0156-4845-8887-043976a17dca"; + device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; fileSystems."/persist" = { - device = "/dev/disk/by-uuid/0bfb59e2-0156-4845-8887-043976a17dca"; + device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; fsType = "btrfs"; options = [ "subvol=persist" "compress=zstd" "noatime" ]; }; fileSystems."/var/log" = { - device = "/dev/disk/by-uuid/0bfb59e2-0156-4845-8887-043976a17dca"; + device = "/dev/disk/by-uuid/da2a3bab-2af6-4208-aaed-7817181717d7"; fsType = "btrfs"; options = [ "subvol=log" "compress=zstd" "noatime" ]; neededForBoot = true;