summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/calendar/nextcloud.nix
blob: 80e51b3482ca86ca086c3943a89799bfac84de19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  cred = import <secrets/ham/nextcloud-calendar>;
in
{
  services.home-assistant.config.calendar =
  [
    {
      platform = "caldav";
      inherit (cred) username password;
      url = "https://o.euer.krebsco.de/remote.php/dav";
    }
  ];
}