summaryrefslogtreecommitdiff
path: root/hosts/radicale/radicale.nix
blob: c2000138856895caaf5a7b467e4519f3fe6e352f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ ... }:
{
  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";
      };
    };
  };
}