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