2020-09-03 02:36:09 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2022-04-14 20:59:38 +02:00
|
|
|
# Enable the auto-cpufreq daemon
|
|
|
|
services.auto-cpufreq.enable = true;
|
2020-09-03 02:36:09 +02:00
|
|
|
|
2022-04-16 00:08:57 +02:00
|
|
|
# Enable the TLP daemon
|
|
|
|
services.tlp.enable = true;
|
|
|
|
|
2021-02-17 03:50:33 +01:00
|
|
|
# Suspend when the battery is critical
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{model_name}=="01AV405", ATTR{capacity}=="[0-5]", RUN+="${config.systemd.package}/bin/systemctl suspend -i"
|
|
|
|
'';
|
2022-06-23 23:31:16 +02:00
|
|
|
|
|
|
|
# Enable thinkfan
|
2022-06-25 22:51:49 +02:00
|
|
|
services.thinkfan = {
|
|
|
|
enable = true;
|
|
|
|
levels = [
|
|
|
|
[ 0 0 47 ]
|
|
|
|
[ 1 47 69 ]
|
|
|
|
[ 2 69 74 ]
|
|
|
|
[ 3 74 78 ]
|
|
|
|
[ 4 78 82 ]
|
|
|
|
[ 5 82 85 ]
|
|
|
|
[ 6 85 87 ]
|
|
|
|
[ 7 87 32767 ]
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# HACK Workaround to enable the service the first time
|
2022-06-23 23:31:16 +02:00
|
|
|
systemd.services.thinkfan.preStart = ''
|
|
|
|
/run/current-system/sw/bin/modprobe -r thinkpad_acpi && /run/current-system/sw/bin/modprobe thinkpad_acpi
|
|
|
|
'';
|
2020-09-03 02:36:09 +02:00
|
|
|
}
|