From 7b77d833f68b251919a7d5f847977256aca515cd Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 10 Oct 2023 18:04:56 -0700 Subject: [PATCH] Define Solr image --- mail-server.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/mail-server.nix b/mail-server.nix index 94f537e..6a2a4d9 100644 --- a/mail-server.nix +++ b/mail-server.nix @@ -144,10 +144,18 @@ in { }; }; - images.ldap-proxy = mkOption { - type = str; - description = "Docker image to use for LDAP proxy."; - default = "ghcr.io/goauthentik/ldap"; + images = { + ldap-proxy = mkOption { + type = str; + description = "Docker image to use for LDAP proxy."; + default = "ghcr.io/goauthentik/ldap"; + }; + + solr = mkOption { + type = str; + description = "Docker image to use for Solr full-text search."; + default = "ghcr.io/goauthentik/ldap"; + }; }; smtp = {