This commit is contained in:
Robin
2026-04-01 07:45:17 +02:00
commit fe27dff192
11 changed files with 733 additions and 0 deletions

30
custom/games.nix Executable file
View File

@@ -0,0 +1,30 @@
{ config, pkgs, ...}:
{
environment = {
systemPackages = with pkgs; [
#gamescope_git
#mesa_git
obs-studio
protonup-ng
prismlauncher
steam
heroic
mangohud
];
sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
};
};
#chaotic.mesa-git.enable = true;
programs = {
steam.gamescopeSession.enable = true;
gamemode.enable = true;
steam = {
enable = true;
remotePlay.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
};
}