Adjust NFS mount options

This commit is contained in:
Jordan Holt 2024-05-04 12:49:12 +01:00
parent 37cdd6e81d
commit 2b8f9c4ae7
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -21,7 +21,20 @@
fileSystems."/mnt/library" = {
device = "library.mesh.vimium.net:/mnt/library";
fsType = "nfs";
options = [ "nfsvers=4.2" "soft" "nocto" "ro" "x-systemd.automount" "noauto" ];
options = [
"nfsvers=4.2"
"bg"
"intr"
"soft"
"timeo=5"
"retrans=5"
"actimeo=5"
"retry=5"
"nocto"
"ro"
"x-systemd.automount"
"noauto"
];
};
system.autoUpgrade = {