From 2b8f9c4ae73a639de60e5ce7d834b462d451c03e Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sat, 4 May 2024 12:49:12 +0100 Subject: [PATCH] Adjust NFS mount options --- hosts/desktop.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/hosts/desktop.nix b/hosts/desktop.nix index 54d28b5..c5d2496 100644 --- a/hosts/desktop.nix +++ b/hosts/desktop.nix @@ -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 = {