disable performance profiles
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 18s

This commit is contained in:
Satria 2026-07-23 17:44:29 +07:00
commit 627405c572

View file

@ -49,23 +49,27 @@
}; };
auto-cpufreq = { auto-cpufreq = {
enable = true; # wait for fix: https://github.com/AdnanHodzic/auto-cpufreq/issues/906 enable = true; # wait for fix: https://github.com/AdnanHodzic/auto-cpufreq/issues/906
settings = { settings = let
charger = { performance = {
governor = "powersave"; # "performance"; governor = "performance";
energy_performance_preference = "performance"; energy_performance_preference = "performance";
turbo = "always"; turbo = "always";
platform_profile = "performance"; platform_profile = "performance";
scaling_min_freq = 800000; scaling_min_freq = 800000;
scaling_max_freq = 3600000; scaling_max_freq = 3600000;
}; };
battery = { balanced = {
governor = "powersave"; governor = "powersave";
energy_performance_preference = "balance-power"; energy_performance_preference = "balance-power";
platform_profile = "low-power";
turbo = "never"; turbo = "never";
platform_profile = "balanced";
scaling_min_freq = 400000; scaling_min_freq = 400000;
scaling_max_freq = 1700000; scaling_max_freq = 1700000;
}; };
in {
battery = balanced;
charger = balanced; # performance;
# ^^ disable overclocking for purely productivity use so low temps and fan noise
}; };
}; };
}; };