systemd: add withMachined flag

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

@ -66,6 +66,7 @@
, withImportd ? true
, withLocaled ? true
, withLogind ? true
, withMachined ? true
, withNetworkd ? true
, withNss ? true
, withPolkit ? true
@ -226,6 +227,7 @@ stdenv.mkDerivation {
"-Dlogind=${lib.boolToString withLogind}"
"-Dlocaled=${lib.boolToString withLocaled}"
"-Dhostnamed=${lib.boolToString withHostnamed}"
"-Dmachined=${lib.boolToString withMachined}"
"-Dnetworkd=${lib.boolToString withNetworkd}"
"-Dpolkit=${lib.boolToString withPolkit}"
"-Dcryptsetup=${lib.boolToString withCryptsetup}"

@ -18673,6 +18673,7 @@ in
withImportd = false;
withLocaled = false;
withLogind = false;
withMachined = false;
withNetworkd = false;
withNss = false;
withPolkit = false;

Loading…
Cancel
Save