feat[client]: add batsignal

This commit is contained in:
Leon Schwarzäugl 2025-10-11 21:59:20 +02:00
parent ca9e922e6e
commit 4bc06d0f07
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ lib, config, ... }:
let
moduleName = "batsignal";
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
services.${moduleName} = {
enable = true;
};
};
}