nixos-config/modules/host/gamemode.nix

22 lines
416 B
Nix
Raw Normal View History

2025-05-05 14:58:11 +03:00
{ config, pkgs, pkgs-unstable, lib, ... }:
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; [
mangohud
protonup
2025-05-05 14:58:11 +03:00
bottles
heroic
2025-05-05 14:58:11 +03:00
prismlauncher
];
environment.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}