CrOS/hosts/common/optional/gaming.nix
2026-04-02 16:10:06 -04:00

29 lines
586 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.protontricks
pkgs.winetricks
pkgs.steamtinkerlaunch
];
programs = {
steam = {
enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
gamescope = {
enable = true;
capSysNice = true;
};
#FIXME(TODO): Figure out what the best settings are, maybe override these in specific host configs?
gamemode = {
enable = true;
settings = {
general = {
softrealtime = "on";
inhibit_screensaver = 1;
};
};
};
};
}