This commit is contained in:
Chris Kruining 2025-09-17 21:02:13 +02:00
parent dfd604f73c
commit 1bb2f3b9b3
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
8 changed files with 47 additions and 28 deletions

View file

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