31 lines
610 B
Nix
Executable File
31 lines
610 B
Nix
Executable File
{ 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;
|
|
};
|
|
};
|
|
}
|