clanService/prometheus: init monitoring system

This commit is contained in:
2026-06-23 15:27:31 +07:00
parent 77b487a709
commit d09f67a757
32 changed files with 580 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ self, inputs, ... }:
let
module = ./default.nix;
in
{
clan.modules = {
prometheus = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-prometheus = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/prometheus" = module;
};
};
}