Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

+5 -1
+5 -1
nixos/modules/services/system/nscd.nix
··· 24 24 enable = mkOption { 25 25 type = types.bool; 26 26 default = true; 27 - description = "Whether to enable the Name Service Cache Daemon."; 27 + description = '' 28 + Whether to enable the Name Service Cache Daemon. 29 + Disabling this is strongly discouraged, as this effectively disables NSS Lookups 30 + from all non-glibc NSS modules, including the ones provided by systemd. 31 + ''; 28 32 }; 29 33 30 34 config = mkOption {