stockholm/makefu/2configs/home/ham/calendar/nextcloud.nix
2021-03-09 22:14:51 +01:00

14 lines
249 B
Nix

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";
}
];
}