nixos/colony: Use temporary LVs until SSD is replaced

This commit is contained in:
2023-01-11 20:06:09 +00:00
parent 1aa16f7de9
commit 6fe897fd3c
3 changed files with 7 additions and 5 deletions

View File

@@ -72,11 +72,11 @@
fsType = "vfat";
};
"/nix" = {
device = "/dev/ssds/colony-nix";
device = "/dev/hdds/tmp-colony-nix";
fsType = "ext4";
};
"/persist" = {
device = "/dev/ssds/colony-persist";
device = "/dev/hdds/tmp-colony-persist";
fsType = "ext4";
neededForBoot = true;
};