mirror of
https://github.com/nix-community/raspberry-pi-nix.git
synced 2025-11-08 19:46:03 +01:00
nfs opts
This commit is contained in:
parent
9ff9d16566
commit
03d609062a
1 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue