15 lines
469 B
Nix
15 lines
469 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Enable power-profiles-daemon
|
|
services.power-profiles-daemon.enable = true;
|
|
|
|
# Integration of AMD P-State EPP with power-profiles-daemon
|
|
services.pp-to-amd-epp.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"
|
|
'';
|
|
}
|