batsignal now locks on very low battery

Former-commit-id: 3b200caed9
This commit is contained in:
Hadi
2025-02-19 10:43:08 +01:00
parent 61ae19567a
commit a90dfeac07

View File

@@ -1,7 +1,8 @@
# Batsignal is a simple utility to send battery notifications.
{
{ pkgs, ... }: {
services.batsignal = {
enable = true;
extraArgs = [ "-c 10" "-w 30" "-f disabled" ];
extraArgs =
[ "-c 10" "-w 30" "-f disabled" "-D ${pkgs.hyprlock}/bin/hyprlock" ];
};
}