zaneyos/modules/core/steam.nix

22 lines
392 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs = {
steam = {
enable = false;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = false;
gamescopeSession.enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
gamescope = {
enable = true;
capSysNice = true;
args = [
"--rt"
"--expose-wayland"
];
};
};
}