From 03d609062aed796a95c9b80ec6c56cc0d99532f8 Mon Sep 17 00:00:00 2001 From: Andrew Kidd Date: Fri, 3 Jan 2025 22:38:51 +0000 Subject: [PATCH] nfs opts --- net-image/net-image.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-image/net-image.nix b/net-image/net-image.nix index 3c831ef..310211e 100644 --- a/net-image/net-image.nix +++ b/net-image/net-image.nix @@ -111,12 +111,12 @@ in "/boot/firmware" = { device = "${config.netImage.nfsRoot}/boot/firmware"; fsType = "nfs"; - options = [ "vers=3" ]; + options = "nolock,rw,vers=3,rsize=131072,wsize=131072,namlen=255,hard,noacl,proto=tcp,timeo=11,retrans=3,sec=sys,mountaddr=192.168.0.1,mountvers=3,mountproto=tcp,local_lock=all,addr=192.168.0.1,noatime,nodiratime"; }; "/" = { device = "${config.netImage.nfsRoot}"; fsType = "nfs"; - options = [ "vers=3" ]; + options = "nolock,rw,vers=3,rsize=131072,wsize=131072,namlen=255,hard,noacl,proto=tcp,timeo=11,retrans=3,sec=sys,mountaddr=192.168.0.1,mountvers=3,mountproto=tcp,local_lock=all,addr=192.168.0.1,noatime,nodiratime"; }; };