calendar to nxc

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2026-04-24 19:56:23 +02:00
parent 12714021b6
commit e6fc668413

View File

@@ -1,29 +1,32 @@
{ pkgs, ... }@all: with all; let { pkgs, ... }@all: with all; let
calendars = with hyper; [ v = "nxc";
user = "lennart";
domain = hyper.domain;
calendars = [
{ {
name = "Preservation"; name = "Preservation";
primary = true; primary = true;
url = "https://dav.${domain}/${user}/preservation/"; url = "https://${v}.${domain}/${user}/preservation/";
color = "#dddddd"; color = "#dddddd";
} }
{ {
name = "Effort"; name = "Effort";
url = "https://dav.${domain}/${user}/effort/"; url = "https://${v}.${domain}/${user}/effort/";
color = "#dd2222"; color = "#dd2222";
} }
{ {
name = "Experience"; name = "Experience";
url = "https://dav.${domain}/${user}/experience/"; url = "https://${v}.${domain}/${user}/experience/";
color = "#2222dd"; color = "#2222dd";
} }
{ {
name = "Exposure"; name = "Exposure";
url = "https://dav.${domain}/${user}/exposure/"; url = "https://${v}.${domain}/${user}/exposure/";
color = "#22aa22"; color = "#22aa22";
} }
{ {
name = "Engagement"; name = "Engagement";
url = "https://dav.${domain}/${user}/engagement/"; url = "https://${v}.${domain}/${user}/engagement/";
color = "#8800CC"; color = "#8800CC";
} }
{ {