mob next [ci-skip] [ci skip] [skip ci]

lastFile:vars/per-machine/vega/yggdrasil/privateKey/secret
This commit is contained in:
2026-06-16 15:11:51 +07:00
parent 77b487a709
commit 57aa5b774a
36 changed files with 492 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;
};
};
}