nix-config/hosts/common/optional/gamemode.nix

17 lines
311 B
Nix
Raw Normal View History

{
programs.gamemode = {
enable = true;
settings = {
general = {
softrealtime = "on";
inhibit_screensaver = 1;
};
gpu = {
apply_gpu_optimisations = "accept-responsibility";
gpu_device = 0;
amd_performance_level = "high";
};
};
};
}