Fixing nfsd service, wait on local-fs.

Otherwise, mountd was started exporting directories before local-fs was ready,
and it failed to start nfsd on missing fs.

+1 -1
+1 -1
nixos/modules/services/network-filesystems/nfsd.nix
··· 126 126 { description = "NFSv3 Mount Daemon"; 127 127 128 128 requires = [ "rpcbind.service" ]; 129 - after = [ "rpcbind.service" ]; 129 + after = [ "rpcbind.service" "local-fs.target" ]; 130 130 131 131 path = [ pkgs.nfs-utils pkgs.sysvtools pkgs.utillinux ]; 132 132