global(fs): add noatime option
This commit is contained in:
parent
ebe904e9f6
commit
dd22303d34
2 changed files with 2 additions and 0 deletions
|
@ -6,5 +6,6 @@ in mkIf (cfg.type == "ext4") {
|
|||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/${cfg.store}";
|
||||
fsType = "ext4";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,5 +7,6 @@ in mkIf (cfg.type == "xfs") {
|
|||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/${cfg.store}";
|
||||
fsType = "xfs";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue