1
0
Fork 0
selfhostblocks/keycloak/mkunit.nix

27 lines
410 B
Nix
Raw Normal View History

2022-10-09 08:52:41 +02:00
{ KeycloakService
}:
{ name
, configDir
, configFile
, user
, group
, dbPasswordFile
, postgresServiceName
, initialAdminFile ? null
, dependsOn ? {}
}:
{
inherit name configDir configFile;
pkg = KeycloakService {
inherit configDir configFile;
inherit user group;
inherit dbPasswordFile initialAdminFile;
inherit postgresServiceName;
};
inherit dependsOn;
type = "systemd-unit";
}