Files
nixy/home/system/batsignal/default.nix
2025-02-19 10:43:08 +01:00

9 lines
223 B
Nix

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