1
0
Fork 0
selfhostblocks/keycloak/mkunit.nix
2023-02-19 20:37:52 -08:00

26 lines
410 B
Nix

{ 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";
}