Files
nixos-config/modules/host/gamemode.nix
T
2026-03-17 19:22:09 +03:00

22 lines
429 B
Nix

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