2024-10-15 13:18:01 +00:00
|
|
|
{ inputs, ... }: {
|
2024-10-15 08:26:42 +00:00
|
|
|
imports = [ inputs.auto-cpufreq.nixosModules.default ];
|
2024-10-12 09:43:57 +00:00
|
|
|
programs.auto-cpufreq = { # CPU PERFMORMANCE
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
charger = { # AC MODE
|
|
|
|
governor = "performance";
|
|
|
|
turbo = "auto";
|
|
|
|
energy_perf_bias = "balance_performance";
|
|
|
|
platform_profile = "balanced";
|
|
|
|
scaling_min_freq = 1400000;
|
|
|
|
scaling_max_freq = 4000000;
|
|
|
|
};
|
|
|
|
battery = { # BAT MODE
|
|
|
|
governor = "powersave";
|
|
|
|
turbo = "auto";
|
|
|
|
energy_perf_bias = "balance_power";
|
|
|
|
platform_profile = "low-power";
|
|
|
|
enable_thresholds = true;
|
|
|
|
# start_threshold = 20;
|
|
|
|
# stop_threshold = 80;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|