19 lines
298 B
Nix
19 lines
298 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|