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 enable = mkOption { 25 type = types.bool; 26 default = true; 27 - description = "Whether to enable the Name Service Cache Daemon."; 28 }; 29 30 config = mkOption {
··· 24 enable = mkOption { 25 type = types.bool; 26 default = true; 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 + ''; 32 }; 33 34 config = mkOption {