fix(fs): add noatime option

This commit is contained in:
514fpv 2024-01-20 12:35:48 +08:00
parent 3703e8a903
commit a2822c0752
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 2 additions and 0 deletions

View file

@ -6,5 +6,6 @@ in mkIf (cfg.type == "ext4") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "ext4";
options = [ "noatime" ];
};
}

View file

@ -7,5 +7,6 @@ in mkIf (cfg.type == "xfs") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "xfs";
options = [ "noatime" ];
};
}