beam_minimal: disable systemdSupport

This is an unnecessary expansion of the closure for a package that is used in non-systemd environments.
systemd support is only necessary for epmd when used with systemd sockets.
We already default `services.epmd.package` to `pkgs.erlang` which uses the full `beam` erlang.
This commit is contained in:
Adam C. Stephens
2025-04-06 17:51:18 -04:00
parent 28e664f87d
commit e19ec916f4
2 changed files with 1 additions and 1 deletions
@@ -51,7 +51,6 @@
odbcSupport ? false,
odbcPackages ? [ unixODBC ],
opensslPackage ? openssl,
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
wxPackages ? [
libGL
libGLU
+1
View File
@@ -7381,6 +7381,7 @@ with pkgs;
beam = callPackage ./beam-packages.nix { };
beam_minimal = callPackage ./beam-packages.nix {
beam = beam_minimal;
systemdSupport = false;
wxSupport = false;
};