commit 238042dae31ca8ded590e70ace7cd86c9717f2c7 parent 7ff17e6a7ae7d2a05ab4f3ec850f07833c78a29b Author: Peter <peter@minskio.co.uk> Date: Mon, 29 Dec 2025 15:59:25 +0000 Extra steam bits Diffstat:
| M | common/steam.nix | | | 15 | +++++++++++++++ |
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/common/steam.nix b/common/steam.nix @@ -1,3 +1,18 @@ +{ pkgs, ... }: + { programs.steam.enable = true; +programs.gamemode.enable = true; +programs.steam.gamescopeSession.enable = true; + + environment.systemPackages = with pkgs; [ + mangohud + protonup-ng + ]; + + environment.sessionVariables = { + STEAM_EXTRA_COMPAT_TOOLS_PATHS = + "\${HOME}/.steam/root/compatibilitytools.d"; + }; + }