srpnix/nixos/gaming.nix
2025-03-26 22:51:40 -04:00

19 lines
310 B
Nix

{ pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
environment.systemPackages = with pkgs; [
protonup-qt
lutris
wine
mangohud
protontricks
gamemode
];
}