Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add NFS support to all systems

encode42 0667bca4 9bdd50fc

+9
+2
modules/common/default.nix
··· 1 1 { 2 2 imports = [ 3 + ./nfs.nix 4 + 3 5 ./locale/en_US.nix 4 6 5 7 ./network/firewall.nix
+3
modules/common/nfs.nix
··· 1 + { 2 + boot.supportedFilesystems = [ "nfs" ]; 3 + }
+4
modules/server/nfs.nix
··· 9 9 ]; 10 10 in 11 11 { 12 + imports = [ 13 + ../common/nfs.nix 14 + ]; 15 + 12 16 services.rpcbind.enable = true; 13 17 14 18 services.nfs.server = {