init telegraph service

This commit is contained in:
pinpox
2025-08-14 13:06:21 +02:00
parent ce902bed0a
commit 30b737ae1f
6 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
self,
lib,
...
}:
let
module = lib.modules.importApply ./default.nix {
inherit (self) packages;
};
in
{
clan.modules.monitoring = module;
perSystem =
{ ... }:
{
clan.nixosTests.monitoring = {
imports = [ ./tests/vm/default.nix ];
clan.modules.monitoring = module;
};
};
}