services.radicale.settings
NixOS option
Configuration for Radicale. See https://radicale.org/v3.html#configuration. This option is mutually exclusive with config.
type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string) or a non-empty list of them)Default
{ }Example
declared in: nixos/modules/services/networking/radicale.nixView source on NixOS/nixpkgs →server = {
hosts = [ "0.0.0.0:5232" "[::]:5232" ];
};
auth = {
type = "htpasswd";
htpasswd_filename = "/etc/radicale/users";
htpasswd_encryption = "bcrypt";
};
storage = {
filesystem_folder = "/var/lib/radicale/collections";
};