From 664c5a332a05854ffa425ea512f55402e48f15e3 Mon Sep 17 00:00:00 2001 From: smayzy Date: Sun, 12 Apr 2026 18:46:16 +0200 Subject: [PATCH] change mount flags for nfs --- hosts/desktop1/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index da5028f..191953a 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -31,8 +31,11 @@ fsType = "nfs"; options = [ "x-systemd.automount" + "nofail" "noauto" "nfsvers=4" + "soft" + "timeo=50" ]; depends = [ "/home" ]; }; @@ -41,8 +44,11 @@ fsType = "nfs"; options = [ "x-systemd.automount" + "nofail" "noauto" "nfsvers=4" + "soft" + "timeo=50" ]; depends = [ "/home" ]; }; @@ -51,8 +57,11 @@ fsType = "nfs"; options = [ "x-systemd.automount" + "nofail" "noauto" "nfsvers=4" + "soft" + "timeo=50" ]; depends = [ "/home" ]; };