services/clanServices/zitadel/flake-module.nix
2025-11-06 15:48:06 +01:00

15 lines
309 B
Nix

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