summary refs log tree commit diff
path: root/nixos/modules/services/system
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-04-25 18:09:51 +0200
committerFlorian Klink <flokli@flokli.de>2020-04-25 18:11:10 +0200
commit2ececf1ed9b90d228593fccf58aaf2a014a98352 (patch)
tree931ea351dba5778a337ef2a0276df9d4c974eab4 /nixos/modules/services/system
parent6e89b440d34c9462d013a6fc52792fca7eee8b79 (diff)
downloadnixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar.gz
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar.bz2
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar.lz
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar.xz
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.tar.zst
nixpkgs-2ececf1ed9b90d228593fccf58aaf2a014a98352.zip
nixos/nscd: be more specific in the nscd.enable description on what breaks
Diffstat (limited to 'nixos/modules/services/system')
-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 {