Files
nixos-config/modules/host/gamemode.nix
T
2025-12-03 15:37:14 +03:00

22 lines
404 B
Nix

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