From 949e55fde99398cc234196f9e69a3239c6c306a6 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Wed, 24 Feb 2021 12:38:07 -0500 Subject: feat(gs/system): Add config for laptop battery hibernate on low battery, and when the power button is pressed Change-Id: I6560fc770ee5707e59fb2763614de2b8000e156e Reviewed-on: https://cl.tvl.fyi/c/depot/+/2550 Reviewed-by: glittershark Tested-by: BuildkiteCI --- users/glittershark/system/system/modules/laptop.nix | 13 +++++++++++++ .../glittershark/system/system/modules/reusable/battery.nix | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 users/glittershark/system/system/modules/laptop.nix (limited to 'users/glittershark/system/system/modules') diff --git a/users/glittershark/system/system/modules/laptop.nix b/users/glittershark/system/system/modules/laptop.nix new file mode 100644 index 0000000000..8c09f3a442 --- /dev/null +++ b/users/glittershark/system/system/modules/laptop.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ./reusable/battery.nix + ]; + + laptop.onLowBattery.enable = true; + + services.logind.extraConfig = '' + HandlePowerKey=hibernate + ''; +} diff --git a/users/glittershark/system/system/modules/reusable/battery.nix b/users/glittershark/system/system/modules/reusable/battery.nix index d7043bf549..ca92e0c3f6 100644 --- a/users/glittershark/system/system/modules/reusable/battery.nix +++ b/users/glittershark/system/system/modules/reusable/battery.nix @@ -7,7 +7,7 @@ with lib; thresholdPercentage = mkOption { description = "Threshold battery percentage on which to perform the action"; - default = 5; + default = 8; type = types.int; }; @@ -26,7 +26,7 @@ with lib; ''SUBSYSTEM=="power_supply", '' ''ATTR{status}=="Discharging", '' ''ATTR{capacity}=="[0-${toString cfg.thresholdPercentage}]", '' - ''RUN+="/${pkgs.systemd}/bin/systemctl ${cfg.action}"'' + ''RUN+="${pkgs.systemd}/bin/systemctl ${cfg.action}"'' ]; }; } -- cgit 1.4.1