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

@ -14711,6 +14711,24 @@ This service changes the screen hue at night. I am not sure if that really does
}
#+end_src
**** batsignal
#+begin_src nix-ts :tangle modules/home/common/batsignal.nix
{ 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;
};
};
}
#+end_src
**** swaylock