diff options
Diffstat (limited to 'makefu/2configs/home/ham/calendar/nextcloud.nix')
-rw-r--r-- | makefu/2configs/home/ham/calendar/nextcloud.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefu/2configs/home/ham/calendar/nextcloud.nix b/makefu/2configs/home/ham/calendar/nextcloud.nix new file mode 100644 index 000000000..80e51b348 --- /dev/null +++ b/makefu/2configs/home/ham/calendar/nextcloud.nix @@ -0,0 +1,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"; + } + ]; +} |