use config instead of settings

This commit is contained in:
Johannes Jöns 2024-05-03 09:16:50 +02:00
parent 0523784b9c
commit e28becc87b

View file

@ -13,12 +13,13 @@ let
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 = {