dotnix/modules/core/steam.nix
2025-03-29 19:05:05 +01:00

20 lines
316 B
Nix

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