nix-config/hosts/radicale/radicale.nix

22 lines
334 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 = {
2025-01-25 15:37:01 +01:00
hosts = [
"0.0.0.0:5232"
"[::]:5232"
];
2025-01-19 23:04:04 +00:00
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";
};
};
};
}