My Nix Configuration
at main 781 B view raw
1# Calendar settings 2# https://stalw.art/docs/collaboration/calendar 3{ 4 max-recurrence-expansions = 2048; 5 # 512 KiB 6 max-size = 524288; 7 max-attendees-per-instance = 20; 8 default.href-name = "default"; 9 default.display-name = "Personal"; 10 # Scheduling 11 # https://stalw.art/docs/collaboration/scheduling 12 scheduling.enable = true; 13 # 1 MiB 14 scheduling.inbound.max-size = 1048576; 15 scheduling.outbound.max-recipients = 100; 16 scheduling.inbox.auto-expunge = "30d"; 17 scheduling.http-rsvp.enable = true; 18 scheduling.http-rsvp.expiration = "7d"; 19 # Notifications 20 # https://stalw.art/docs/collaboration/notifications 21 alarms.enable = true; 22 alarms.minimum-interval = "1h"; 23 alarms.from.name = "PyroNet Calendars"; 24 alarms.from.email = "calendar-notifs@pyrox.dev"; 25}