1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-18 09:19:39 +01:00

Fix steam-run

This commit is contained in:
Stefan Ellmauthaler 2023-02-23 16:15:49 +01:00
parent 9f82487008
commit 1447fa7ec5
Failed to extract signature

View File

@ -12,7 +12,7 @@ with lib; {
in
mkIf cfg.enable {
environment.systemPackages = [
(pkgs.unstable.steam.override {withJava = true;}).run
(pkgs.unstable.steam.override {extraPkgs = pkgs: [pkgs.jdk8];}).run
];
};
}