22 lines
417 B
Nix
22 lines
417 B
Nix
|
{ config, pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
services.radicale = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
server = {
|
||
|
hosts = [ "0.0.0.0:5232" "[::]:5232" ];
|
||
|
};
|
||
|
auth = {
|
||
|
type = "htpasswd";
|
||
|
htpasswd_filename = "/var/lib/radicale/users";
|
||
|
htpasswd_encryption = "bcrypt";
|
||
|
};
|
||
|
storage = {
|
||
|
filesystem_folder = "/var/lib/radicale/collections";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|