17 lines
252 B
Nix
17 lines
252 B
Nix
_: {
|
|
programs.auto-cpufreq = {
|
|
enable = true;
|
|
settings = {
|
|
charger = {
|
|
governor = "performance";
|
|
turbo = "auto";
|
|
};
|
|
|
|
battery = {
|
|
governor = "powersave";
|
|
turbo = "auto";
|
|
};
|
|
};
|
|
};
|
|
}
|