Files
infra/modules/clan/phonebox/flake-module.nix
kurogeek 54dbd94876 mob next [ci-skip] [ci skip] [skip ci]
lastFile:modules/clan/phonebox/tests/vm/vars/per-machine/server/yggdrasil/publicKey/value
2025-12-05 11:42:09 +07:00

24 lines
349 B
Nix

{
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;
};
};
}