nix-config/_/nixos/_mixins/optional/gamemode.nix

16 lines
311 B
Nix

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