tangled
alpha
login
or
join now
ngp.computer
/
nixos
Configuration for my NixOS based systems and Home Manager
0
fork
atom
overview
issues
pulls
pipelines
NFS noauto was bad
ngp.computer
2 years ago
fa2a02da
ca0b7b27
+2
-2
1 changed file
expand all
collapse all
unified
split
networking.nix
+2
-2
networking.nix
···
42
42
"/srv/shokuhou" = {
43
43
device = "192.168.1.3:/srv/shokuhou";
44
44
fsType = "nfs";
45
45
-
options = ["nfsvers=4.2" "x-system.automount" "noauto" "x-system.idle-timeout=600"];
45
45
+
options = ["nfsvers=4" "user" "x-system.automount" "x-system.idle-timeout=600"];
46
46
};
47
47
"/srv/mentalout" = {
48
48
device = "192.168.1.3:/srv/mentalout";
49
49
fsType = "nfs";
50
50
-
options = ["nfsvers=4.2" "x-system.automount" "noauto" "x-system.idle-timeout=600"];
50
50
+
options = ["nfsvers=4" "user" "x-system.automount" "x-system.idle-timeout=600"];
51
51
};
52
52
};
53
53
}