about summary refs log tree commit diff
path: root/modules/hardware
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/low-battery.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/modules/hardware/low-battery.nix b/modules/hardware/low-battery.nix
new file mode 100644
index 00000000..40c21178
--- /dev/null
+++ b/modules/hardware/low-battery.nix
@@ -0,0 +1,45 @@
+# based on https://code.tvl.fyi/tree/users/glittershark/system/system/modules/reusable/battery.nix
+{ config, lib, pkgs, ... }:
+
+let
+
+  inherit (pkgs.vuizvui.profpatsch)
+    getBins
+    ;
+
+  cfg = config.vuizvui.hardware.low-battery;
+
+  bins = getBins pkgs.systemd [ "systemctl" ];
+
+in {
+  options = {
+    vuizvui.hardware.low-battery = {
+      enable = lib.mkEnableOption "suspend on low battery";
+
+      treshold = lib.mkOption {
+        description = "Percentage treshold on which to suspend";
+        type = lib.types.int;
+        default = 5;
+      };
+
+      action = lib.mkOption {
+        description = "Type of suspend action to perform when treshold is reached";
+        type = lib.types.enum [
+          "hibernate"
+          "suspend"
+          "suspend-then-hibernate"
+        ];
+        default = "suspend";
+      };
+    };
+  };
+
+  config = lib.mkIf cfg.enable {
+    services.udev.extraRules = lib.concatStrings [
+      ''SUBSYSTEM=="power_supply", ''
+      ''ATTR{status}=="Discharging", ''
+      ''ATTR{capacity}=="[0-${toString cfg.treshold}]", ''
+      ''RUN+="${bins.systemctl} ${cfg.action}"''
+    ];
+  };
+}