disable performance profiles
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 18s
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 18s
This commit is contained in:
parent
a69e94597d
commit
627405c572
1 changed files with 9 additions and 5 deletions
|
|
@ -49,23 +49,27 @@
|
|||
};
|
||||
auto-cpufreq = {
|
||||
enable = true; # wait for fix: https://github.com/AdnanHodzic/auto-cpufreq/issues/906
|
||||
settings = {
|
||||
charger = {
|
||||
governor = "powersave"; # "performance";
|
||||
settings = let
|
||||
performance = {
|
||||
governor = "performance";
|
||||
energy_performance_preference = "performance";
|
||||
turbo = "always";
|
||||
platform_profile = "performance";
|
||||
scaling_min_freq = 800000;
|
||||
scaling_max_freq = 3600000;
|
||||
};
|
||||
battery = {
|
||||
balanced = {
|
||||
governor = "powersave";
|
||||
energy_performance_preference = "balance-power";
|
||||
platform_profile = "low-power";
|
||||
turbo = "never";
|
||||
platform_profile = "balanced";
|
||||
scaling_min_freq = 400000;
|
||||
scaling_max_freq = 1700000;
|
||||
};
|
||||
in {
|
||||
battery = balanced;
|
||||
charger = balanced; # performance;
|
||||
# ^^ disable overclocking for purely productivity use so low temps and fan noise
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue