10 lines
152 B
Nix
10 lines
152 B
Nix
{ ... }: {
|
|
services.radicale = {
|
|
enable = true;
|
|
settings = {
|
|
auth.type = "none";
|
|
server.hosts = [ "0.0.0.0:5232" ];
|
|
};
|
|
};
|
|
}
|