38 lines
898 B
Nix
38 lines
898 B
Nix
{lib, config, ...}: {
|
|
imports = [
|
|
../options.nix
|
|
];
|
|
|
|
services = {
|
|
thermald.enable = config.useThermald;
|
|
|
|
tlp = lib.mkIf (config.has_battery) {
|
|
enable = true;
|
|
settings = {
|
|
START_CHARGE_THRESH_BAT0 = 50;
|
|
STOP_CHARGE_THRESH_BAT0 = 85;
|
|
};
|
|
} // config.tlpConfig or {};
|
|
|
|
auto-cpufreq = lib.mkIf (config.has_battery) {
|
|
enable = true;
|
|
settings = {
|
|
battery = {
|
|
governor = "powersave"; # Set the CPU governor to powersave.
|
|
energy_performance_preference = "power";
|
|
turbo = "never";
|
|
|
|
# enable_thresholds = true;
|
|
# start_threshold = 50;
|
|
# stop_threshold = 90;
|
|
};
|
|
|
|
charger = {
|
|
governor = "performance"; # Set the CPU governor to performance when charging.
|
|
turbo = "auto";
|
|
};
|
|
};
|
|
} // config.cpufreqConfig or {};
|
|
};
|
|
}
|