summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-04-26 00:05:25 +0200
committerGitHub <noreply@github.com>2020-04-26 00:05:25 +0200
commit02b57e72bb294544508044acde502352a608c80f (patch)
tree8b770009677c5e62fe054fc09569b5e3bb754746 /nixos/modules
parentd13a19cfbaf43b1ad2fcf835b1a05410c2f98bcb (diff)
parent2ececf1ed9b90d228593fccf58aaf2a014a98352 (diff)
downloadnixpkgs-02b57e72bb294544508044acde502352a608c80f.tar
nixpkgs-02b57e72bb294544508044acde502352a608c80f.tar.gz
nixpkgs-02b57e72bb294544508044acde502352a608c80f.tar.bz2
nixpkgs-02b57e72bb294544508044acde502352a608c80f.tar.lz
nixpkgs-02b57e72bb294544508044acde502352a608c80f.tar.xz
nixpkgs-02b57e72bb294544508044acde502352a608c80f.tar.zst
nixpkgs-02b57e72bb294544508044acde502352a608c80f.zip
Merge pull request #86010 from flokli/nscd-disable
nixos/nscd: be more specific in the nscd.enable description on what breaks
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/system/nscd.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix
index af26dd84707..d720f254b81 100644
--- a/nixos/modules/services/system/nscd.nix
+++ b/nixos/modules/services/system/nscd.nix
@@ -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 {