Convert dedicated disk to nix store; add noatime option for mounting and require for boot

This commit is contained in:
James Eversole 2023-07-01 16:10:22 -05:00
parent 2ee3840687
commit baf8223799

View File

@ -19,9 +19,11 @@
fsType = "ext4";
};
"/mnt/data" = {
"/nix" = {
device = "/dev/disk/by-label/SDA-EXT";
fsType = "ext4";
neededForBoot = true;
options = [ "noatime" ];
};
"/boot" = {