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