Files
nixos-haus/old-pi-nixos/radicale.nix
2025-10-02 14:24:48 +03:00

13 lines
379 B
Nix

{config, lib, pkgs, modulesPath, ...}:
{
services.radicale = {
enable = true;
settings.server.hosts = [ "192.168.0.101:5232" ];
settings.auth.type = "htpasswd";
#settings.auth.htpasswd_filename = "/home/boxuser/radicale/config/users";
settings.auth.htpasswd_encryption = "plain";
#settings.storage.filesystem_folder = "/home/boxuser/radicale/data/collections";
};
}