CrOS/hosts/common/optional/gaming.nix
2025-07-10 17:37:16 -04:00

32 lines
671 B
Nix

{pkgs, ...}: {
programs = {
steam = {
enable = true;
protontricks = {
enable = true;
};
extraCompatPackages = [pkgs.unstable.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;
};
};
};
};
environment.systemPackages = with pkgs; [
# vintagestory
# mudlet
# r2modman
# prismlauncher
# obs-studio
];
}