blumeops/nixos/ringtail/gaming.nix
Erich Blume 5de2ed9f96 Add gaming.nix for ringtail: gamescope + consolidate Steam config
Move Steam config from configuration.nix to a dedicated gaming.nix module
and add gamescope for fullscreen/resolution management with Proton games.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 15:48:36 -07:00

16 lines
386 B
Nix

{ pkgs, ... }:
{
# Steam
programs.steam = {
enable = true;
dedicatedServer.openFirewall = true;
};
# Gamescope — micro-compositor for game fullscreen/resolution management.
# Use as Steam launch option: gamescope -W 2560 -H 1440 -f -- %command%
programs.gamescope = {
enable = true;
capSysNice = true; # Allow gamescope to set realtime scheduling
};
}