nixos/nscd: be more specific in the nscd.enable description on what breaks

This commit is contained in:
Florian Klink 2020-04-25 18:09:51 +02:00
parent 6e89b440d3
commit 2ececf1ed9

View File

@ -24,7 +24,11 @@ in
enable = mkOption { enable = mkOption {
type = types.bool; type = types.bool;
default = true; 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 { config = mkOption {