stockholm/makefu/2configs/home/ham/calendar/nextcloud.nix

14 lines
249 B
Nix
Raw Normal View History

2020-07-01 11:43:07 +00:00
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";
}
];
2020-07-01 11:43:07 +00:00
}