Files
nix-flake/modules/gaming.nix
zephrynis 3d8fec08e5 gaming: add Prism Launcher
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-28 00:51:35 +01:00

21 lines
488 B
Nix

{ pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true; # "Steam (gamescope)" session in SDDM
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
programs.gamemode.enable = true;
programs.gamescope.enable = true;
# programs.gamescope.capSysNice = true; # left off — known to break gamescope under Steam
environment.systemPackages = with pkgs; [
mangohud
prismlauncher
protonup-qt
];
}