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