mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-08-17 21:45:53 +00:00
21 lines
488 B
Nix
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
|
|
];
|
|
}
|