clanService/apple-network: init

This commit is contained in:
2026-07-23 17:33:04 +07:00
parent 0946de0e46
commit 7f6abc1d04
34 changed files with 376 additions and 0 deletions
@@ -0,0 +1,19 @@
{ inputs, self, ... }:
let
module = ./default.nix;
in
{
clan.modules = {
apple-network = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-apple-network = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/apple-network" = module;
};
};
}