systemd: add withNss flag

wip/yesman
Florian Klink 4 years ago
parent a079a6f026
commit 8526662a33
  1. 6
      pkgs/os-specific/linux/systemd/default.nix
  2. 1
      pkgs/top-level/all-packages.nix

@ -67,6 +67,7 @@
, withLocaled ? true
, withLogind ? true
, withNetworkd ? true
, withNss ? true
, withPolkit ? true
, withRemote ? false # has always been disabled on NixOS, upstream version appears broken anyway
, withResolved ? true
@ -285,6 +286,11 @@ stdenv.mkDerivation {
] ++ lib.optionals (withShellCompletions == false) [
"-Dbashcompletiondir=no"
"-Dzshcompletiondir=no"
] ++ lib.optionals (!withNss) [
"-Dnss-myhostname=false"
"-Dnss-mymachines=false"
"-Dnss-resolve=false"
"-Dnss-systemd=false"
];
preConfigure = ''

@ -18674,6 +18674,7 @@ in
withLocaled = false;
withLogind = false;
withNetworkd = false;
withNss = false;
withPolkit = false;
withResolved = false;
withShellCompletions = false;

Loading…
Cancel
Save