Files
LillyOS/modules/gaming/steam.nix
2026-01-05 04:04:42 +01:00

26 lines
506 B
Nix

{ pkgs, ... }:
{
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = false;
gamescopeSession.enable = false;
extraPackages = with pkgs; [
steamtinkerlaunch
];
extraCompatPackages = with pkgs; [
steamtinkerlaunch
];
};
gamescope = {
enable = true;
capSysNice = true;
};
};
environment.systemPackages = with pkgs; [
steamtinkerlaunch
protonup-qt
];
}