nixos-config/nixos/modules/gamemode.nix
2025-01-27 13:55:48 +03:00

18 lines
391 B
Nix

{ pkgs, pkgs-unstable, ...}: {
programs.steam.enable = true;
programs.steam.gamescopeSession.enable = true;
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
mangohud
protonup
pkgs-unstable.bottles
heroic
];
environment.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}