nix-config/hosts/radicale/radicale.nix
2025-01-26 14:16:47 +01:00

21 lines
326 B
Nix

{ ... }:
{
services.radicale = {
enable = true;
settings = {
server = {
hosts = [
"0.0.0.0:5232"
"[::]:5232"
];
ssl = "False";
};
auth = {
type = "http_x_remote_user";
};
rights = {
type = "owner_only";
};
};
};
}