diff --git a/nfs-mount.nix b/nfs-mount.nix index b4b9aa3..20be96a 100644 --- a/nfs-mount.nix +++ b/nfs-mount.nix @@ -18,7 +18,7 @@ systemd.mounts = [{ type = "nfs"; mountConfig = { - Options = ["noatime" "fsc"]; + Options = ["noatime" "fsc" "actimeo=3600" ]; }; what = "${config.vars.nfs_server}:${config.vars.nfs_volume}"; where = config.vars.nfs_mount;