mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
24 lines
479 B
Nix
24 lines
479 B
Nix
{pkgs, ...}: {
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
protontricks = {
|
|
enable = true;
|
|
};
|
|
};
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|