From 41059fc548088e49e3ddb3a2b4faeb5de018e60f Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 3 May 2024 09:14:16 +0200 Subject: [PATCH] docs: use settings instead of config in radicale --- docs/add-radicale.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/add-radicale.rst b/docs/add-radicale.rst index 2393f6e..cf98333 100644 --- a/docs/add-radicale.rst +++ b/docs/add-radicale.rst @@ -24,12 +24,13 @@ have to be used. These can still be generated using `mkpasswd -m bcrypt`. in { services.radicale = { enable = true; - config = '' - [auth] - type = htpasswd - htpasswd_filename = ${htpasswd} - htpasswd_encryption = bcrypt - ''; + settings = { + auth = { + type = "htpasswd"; + htpasswd_filename = "${htpasswd}"; + htpasswd_encryption = "bcrypt"; + }; + }; }; services.nginx = {