Files
infra/modules/clan/phonebox/flake-module.nix
kurogeek ae5ac55cdc mob next [ci-skip] [ci skip] [skip ci]
lastFile:modules/clan/phonebox/tests/vm/vars/per-machine/server/state-version/version/value
2025-10-31 14:09:37 +07:00

25 lines
366 B
Nix

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