nixos-config/nixos/modules/gamemode.nix

18 lines
387 B
Nix
Raw Normal View History

2025-01-18 15:53:27 +03:00
{ pkgs, pkgs-stable, ...}: {
2024-08-26 01:01:46 +03:00
programs.steam.enable = true;
programs.steam.gamescopeSession.enable = true;
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
mangohud
protonup
bottles
2025-01-18 15:53:27 +03:00
pkgs-stable.heroic
2024-08-26 01:01:46 +03:00
];
environment.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}