panacea/modules/power.nix

12 lines
359 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2022-04-14 20:59:38 +02:00
# Enable the auto-cpufreq daemon
services.auto-cpufreq.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"
'';
}