diff options
| author | Aidan Gauland <aidalgol@fastmail.net> | 2025-08-09 08:54:26 +1200 |
|---|---|---|
| committer | Aidan Gauland <aidalgol@fastmail.net> | 2025-08-09 08:54:26 +1200 |
| commit | 791ee7f0731909a8f9398ae4e77c216ca158b9df (patch) | |
| tree | 42d4a6961a1b48cac422d9c6079bb1a37d9382a8 | |
| parent | kor: 0.6.2 -> 0.6.3 (#431865) (diff) | |
| download | nixpkgs-791ee7f0731909a8f9398ae4e77c216ca158b9df.tar.gz | |
heroic: disable privateTmp
Disable privateTmp in the Steam runtime env wrapper so that Heroic does
not run multiple instances.
Closes #432037
| -rw-r--r-- | pkgs/by-name/he/heroic/package.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/he/heroic/package.nix b/pkgs/by-name/he/heroic/package.nix index 77dc9a494db8..d68acae65911 100644 --- a/pkgs/by-name/he/heroic/package.nix +++ b/pkgs/by-name/he/heroic/package.nix @@ -5,7 +5,7 @@ extraLibraries ? pkgs: [ ], }: -steam.buildRuntimeEnv { +(steam.override { privateTmp = false; }).buildRuntimeEnv { pname = "heroic"; inherit (heroic-unwrapped) version meta; |
