rename persist

This commit is contained in:
twoneis 2024-05-08 15:01:05 +02:00
parent 654d0077f5
commit 05705124bc
2 changed files with 3 additions and 3 deletions

View file

@ -39,9 +39,9 @@
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [ "compress=zstd" "noatime" ];
mountpoint = "/nix"; mountpoint = "/nix";
}; };
"/persistent" = { "/persist" = {
mountOptions = [ "compress=zstd" "noatime" ]; mountOptions = [ "compress=zstd" "noatime" ];
mountpoint = "/persistent"; mountpoint = "/persist";
}; };
}; };

View file

@ -19,7 +19,7 @@
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" "noatime" ]; options = [ "subvol=nix" "compress=zstd" "noatime" ];
}; };
"/persistent" = { "/persist" = {
device = "/dev/disk/by-uuid/7d29fef5-9fdf-43b4-ad17-a94774f802b5"; device = "/dev/disk/by-uuid/7d29fef5-9fdf-43b4-ad17-a94774f802b5";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=persistent" "compress=zstd" "noatime" ]; options = [ "subvol=persistent" "compress=zstd" "noatime" ];