1
0
Fork 0
selfhostblocks/keycloak/mkunit.nix

29 lines
434 B
Nix
Raw Normal View History

2022-10-08 23:52:41 -07:00
{ KeycloakService
}:
{ name
, configDir
, configFile
, user
, group
, postgresServiceName
, initialAdminUsername ? "admin"
, keys
2022-10-08 23:52:41 -07:00
, dependsOn ? {}
}:
{
inherit name configDir configFile;
inherit initialAdminUsername;
2022-10-08 23:52:41 -07:00
pkg = KeycloakService {
inherit configDir configFile;
inherit user group;
inherit keys initialAdminUsername;
2022-10-08 23:52:41 -07:00
inherit postgresServiceName;
};
inherit dependsOn;
type = "systemd-unit";
}