Files
nixos-config/modules/host/gamemode.nix
T

22 lines
429 B
Nix
Raw Normal View History

2026-03-17 01:35:37 +03:00
{ config, pkgs, pkgs-stable, lib, ... }:
2025-02-02 14:57:36 +03:00
lib.mkIf config.programs.gamemode.enable {
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
2025-05-05 14:58:11 +03:00
environment.systemPackages = with pkgs; [
2025-02-02 14:57:36 +03:00
mangohud
2025-12-01 23:19:06 +03:00
protonup-ng
2025-05-05 14:58:11 +03:00
bottles
2026-03-17 01:35:37 +03:00
pkgs-stable.heroic
2025-05-05 14:58:11 +03:00
prismlauncher
2025-02-02 14:57:36 +03:00
];
environment.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}