From 0b117a31eca0dc9c9c9f897dd4a181535b657790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20Sch=C3=B6ttl?= Date: Wed, 12 Feb 2025 09:15:24 +0100 Subject: [PATCH] bookstack: fix syntax in option example --- nixos/modules/services/web-apps/bookstack.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/bookstack.nix b/nixos/modules/services/web-apps/bookstack.nix index 696f486cd90a..8c9a776c56f7 100644 --- a/nixos/modules/services/web-apps/bookstack.nix +++ b/nixos/modules/services/web-apps/bookstack.nix @@ -249,7 +249,7 @@ in { OIDC_NAME = "MyLogin"; OIDC_DISPLAY_NAME_CLAIMS = "name"; OIDC_CLIENT_ID = "bookstack"; - OIDC_CLIENT_SECRET = {_secret = "/run/keys/oidc_secret"}; + OIDC_CLIENT_SECRET = {_secret = "/run/keys/oidc_secret";}; OIDC_ISSUER = "https://keycloak.example.com/auth/realms/My%20Realm"; OIDC_ISSUER_DISCOVER = true; }