games: move gamemode to games
This commit is contained in:
parent
d0466f96da
commit
42125d9b48
3 changed files with 10 additions and 12 deletions
|
@ -56,6 +56,7 @@
|
||||||
|
|
||||||
"${mod}/programs/kde.nix"
|
"${mod}/programs/kde.nix"
|
||||||
"${mod}/hardware/nvidia.nix"
|
"${mod}/hardware/nvidia.nix"
|
||||||
|
"${mod}/programs/games.nix"
|
||||||
|
|
||||||
self.nixosModules.theme
|
self.nixosModules.theme
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{inputs, ...}: {
|
|
||||||
programs.gamemode = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
general = {
|
|
||||||
softrealtime = "auto";
|
|
||||||
renice = 15;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -7,7 +7,15 @@
|
||||||
pkgs.proton-ge-bin
|
pkgs.proton-ge-bin
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
gamemode.enable = true;
|
gamemode = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
general = {
|
||||||
|
softrealtime = "auto";
|
||||||
|
renice = 15;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
coolercontrol = {
|
coolercontrol = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nvidiaSupport = true;
|
nvidiaSupport = true;
|
||||||
|
|
Loading…
Reference in a new issue