Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d13a19cfbaf4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 02b57e72bb29
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 25, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2ececf1 View commit details
  2. Merge pull request #86010 from flokli/nscd-disable

    nixos/nscd: be more specific in the nscd.enable description on what breaks
    flokli authored Apr 25, 2020
    Copy the full SHA
    02b57e7 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 nixos/modules/services/system/nscd.nix
6 changes: 5 additions & 1 deletion nixos/modules/services/system/nscd.nix
Original file line number Diff line number Diff line change
@@ -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 {