0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

steam: add extraEnv option

This commit is contained in:
Atemu 2023-01-29 14:56:57 +01:00
parent 4731598712
commit 1f27e0b77a
2 changed files with 15 additions and 1 deletions

View file

@ -14,7 +14,12 @@ in {
defaultText = literalExpression "pkgs.steam";
example = literalExpression ''
pkgs.steam-small.override {
extraLibraries = with pkgs; [
extraEnv = {
MANGOHUD = true;
OBS_VKCAPTURE = true;
RADV_TEX_ANISO = 16;
};
extraLibraries = p: with p; [
atk
];
}