Merge pull request #86010 from flokli/nscd-disable

nixos/nscd: be more specific in the nscd.enable description on what breaks
This commit is contained in:
Florian Klink 2020-04-26 00:05:25 +02:00 committed by GitHub
commit 02b57e72bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,11 @@ in
enable = mkOption {
type = types.bool;
default = true;
description = "Whether to enable the Name Service Cache Daemon.";
description = ''
Whether to enable the Name Service Cache Daemon.
Disabling this is strongly discouraged, as this effectively disables NSS Lookups
from all non-glibc NSS modules, including the ones provided by systemd.
'';
};
config = mkOption {