systemd: add withUserDb flag

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

@ -73,6 +73,7 @@
, withShellCompletions ? true
, withTimedated ? true
, withTimesyncd ? true
, withUserDb ? true
# name argument
, pname ? "systemd"
@ -233,6 +234,7 @@ stdenv.mkDerivation {
"-Dsysusers=false"
"-Dtimedated=${lib.boolToString withTimedated}"
"-Dtimesyncd=${lib.boolToString withTimesyncd}"
"-Duserdb=${lib.boolToString withUserDb}"
"-Dcoredump=${lib.boolToString withCoredump}"
"-Dfirstboot=false"
"-Dresolve=${lib.boolToString withResolved}"

@ -18678,6 +18678,7 @@ in
withResolved = false;
withShellCompletions = false;
withTimedated = false;
withUserDb = false;
glib = null;
libgcrypt = null;
lvm2 = null;

Loading…
Cancel
Save