Home Gen5 @ 2025-05-04-05:05 by jonas@monolith

This commit is contained in:
2025-05-06 01:07:53 +02:00
parent 891347b06c
commit 55478dc544
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{
config,
lib,
...
}: let
cfg = config.hive.flameshot;
in {
options.hive.flameshot.enable = lib.mkEnableOption "Flameshot service.";
config = lib.mkIf cfg.enable {
services.flameshot.enable = true;
};
}