From 1f71a68dd013c5036ddddee377bc67b5d781c5de Mon Sep 17 00:00:00 2001 From: coolneng Date: Sat, 16 Apr 2022 00:08:57 +0200 Subject: [PATCH] Enable TLP alongside auto-cpufreq --- modules/power.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/power.nix b/modules/power.nix index 47b4fb0..c057a8f 100644 --- a/modules/power.nix +++ b/modules/power.nix @@ -4,6 +4,9 @@ # Enable the auto-cpufreq daemon services.auto-cpufreq.enable = true; + # Enable the TLP daemon + services.tlp.enable = true; + # 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"