docs: use settings instead of config in radicale

This commit is contained in:
jopejoe1 2024-05-03 09:14:16 +02:00
parent ef4756bcfc
commit 41059fc548

View File

@ -24,12 +24,13 @@ have to be used. These can still be generated using `mkpasswd -m bcrypt`.
in { in {
services.radicale = { services.radicale = {
enable = true; enable = true;
config = '' settings = {
[auth] auth = {
type = htpasswd type = "htpasswd";
htpasswd_filename = ${htpasswd} htpasswd_filename = "${htpasswd}";
htpasswd_encryption = bcrypt htpasswd_encryption = "bcrypt";
''; };
};
}; };
services.nginx = { services.nginx = {