diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 8aaeddd1e81d0b..0a89fe3720a50a 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -53,6 +53,7 @@ , withKexectools ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) kexectools.meta.platforms , kexectools , bashInteractive +, libmicrohttpd , withAnalyze ? true , withApparmor ? true @@ -71,7 +72,7 @@ , withNss ? true , withPCRE2 ? true , withPolkit ? true -, withRemote ? false # has always been disabled on NixOS, upstream version appears broken anyway +, withRemote ? true , withResolved ? true , withShellCompletions ? true , withTimedated ? true @@ -201,6 +202,7 @@ stdenv.mkDerivation { ++ lib.optional withPCRE2 pcre2 ++ lib.optional withResolved libgpgerror ++ lib.optional withSelinux libselinux + ++ lib.optional withRemote libmicrohttpd ; #dontAddPrefix = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 36c9cba90880ec..74b8e7ddce181b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18812,6 +18812,7 @@ in withNss = false; withPCRE2 = false; withPolkit = false; + withRemote = false; withResolved = false; withShellCompletions = false; withTimedated = false;