systemd: add withNss flag

This commit is contained in:
Florian Klink 2020-10-28 01:05:14 +01:00
parent a079a6f026
commit 8526662a33
2 changed files with 7 additions and 0 deletions

View file

@ -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 = ''

View file

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