Configuration for my NixOS based systems and Home Manager

NFS noauto was bad

+2 -2
+2 -2
networking.nix
··· 42 42 "/srv/shokuhou" = { 43 43 device = "192.168.1.3:/srv/shokuhou"; 44 44 fsType = "nfs"; 45 - options = ["nfsvers=4.2" "x-system.automount" "noauto" "x-system.idle-timeout=600"]; 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 - options = ["nfsvers=4.2" "x-system.automount" "noauto" "x-system.idle-timeout=600"]; 50 + options = ["nfsvers=4" "user" "x-system.automount" "x-system.idle-timeout=600"]; 51 51 }; 52 52 }; 53 53 }