services/clanServices/zitadel/flake-module.nix
Chris Kruining 4168001713
.
2025-09-18 10:37:06 +02:00

15 lines
241 B
Nix

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