nixos/home/system/batsignal/default.nix
2024-10-15 15:02:07 +02:00

8 lines
167 B
Nix

# Batsignal is a simple utility to send battery notifications.
{
services.batsignal = {
enable = true;
extraArgs = [ "-c 10" "-w 30" "-f disabled" ];
};
}