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