nix-config/hosts/radicale/radicale.nix

19 lines
306 B
Nix
Raw Normal View History

2025-01-20 02:17:45 +00:00
{ config, ... }:
2025-01-19 23:04:04 +00:00
{
services.radicale = {
enable = true;
settings = {
server = {
hosts = [ "0.0.0.0:5232" "[::]:5232" ];
ssl = "False";
};
auth = {
2025-01-21 00:14:24 +00:00
type = "http_x_remote_user";
2025-01-19 23:04:04 +00:00
};
rights = {
type = "owner_only";
};
};
};
}