mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
17 lines
311 B
Nix
17 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|