nixos-config/nixos/modules/gamemode.nix

18 lines
391 B
Nix
Raw Normal View History

2025-01-26 15:02:48 +03:00
{ pkgs, pkgs-unstable, ...}: {
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
2025-01-26 15:02:48 +03:00
pkgs-unstable.bottles
heroic
2024-08-26 01:01:46 +03:00
];
environment.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}