* Set `services.nfsKernel.client.enable' automatically if there is a
filesystem with type "nfs" or "nfs4". svn path=/nixos/branches/boot-order/; revision=22189
This commit is contained in:
@@ -21,7 +21,7 @@ in
|
||||
services.nfsKernel = {
|
||||
|
||||
client.enable = mkOption {
|
||||
default = false;
|
||||
default = any (fs: fs.fsType == "nfs" || fs.fsType == "nfs4") config.fileSystems;
|
||||
description = ''
|
||||
Whether to enable the kernel's NFS client daemons.
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user