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

Changed files
+5 -1
nixos
modules
services
system
+5 -1
nixos/modules/services/system/nscd.nix
···
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 {