services/clanServices/zitadel/flake-module.nix
2025-09-17 20:23:19 +02:00

15 lines
281 B
Nix

{ lib, ... }:
let
module = lib.modules.importApply ./default.nix {};
in
{
clan.modules.zitadel = module;
perSystem = { ... }: {
# clan.nixosTests.zitadel = {
# imports = [ ./tests/vm/default.nix ];
# clan.modules."@amarth/zitadel" = module;
# };
};
}