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

lastFile:vars/per-machine/rigel/yggdrasil/yggdrasil-secret/secret
This commit is contained in:
2025-12-03 10:21:25 +07:00
parent 5ecff1bc9e
commit 9c52013e7d
80 changed files with 5579 additions and 26 deletions

View File

@@ -0,0 +1,24 @@
{
inputs,
self,
...
}:
let
module = ./default.nix;
in
{
clan.modules = {
phonebox = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-phonebox = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/phonebox" = module;
clan.modules."@clan/yggdrasil" = ../yggdrasil/default.nix;
};
};
}