From fca0b4b43405ce46aa759306492a52f4a8f1ca53 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Tue, 14 Jul 2026 19:36:08 +0200 Subject: [PATCH] calendars --- hosts/www/caldav-export.py | 2 +- hosts/www/dav2ical.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/www/caldav-export.py b/hosts/www/caldav-export.py index 44012c2..9fe4fa5 100644 --- a/hosts/www/caldav-export.py +++ b/hosts/www/caldav-export.py @@ -60,7 +60,7 @@ def main(): parser.add_argument( "-o", "--output", - default="/srv/http/ics", + default="/srv/http/calendars", ) args = parser.parse_args() diff --git a/hosts/www/dav2ical.nix b/hosts/www/dav2ical.nix index 7e37aff..be0ddf7 100644 --- a/hosts/www/dav2ical.nix +++ b/hosts/www/dav2ical.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: let - outputDir = "/srv/http/ical"; + outputDir = "/srv/http/calendars"; script = pkgs.writeScript "caldav-export.py" '' #!${pkgs.python3}/bin/python3