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
calendars = with hyper; [
v = "nxc";
user = "lennart";
domain = hyper.domain;
calendars = [
{
name = "Preservation";
primary = true;
url = "https://dav.${domain}/${user}/preservation/";
url = "https://${v}.${domain}/${user}/preservation/";
color = "#dddddd";
}
{
name = "Effort";
url = "https://dav.${domain}/${user}/effort/";
url = "https://${v}.${domain}/${user}/effort/";
color = "#dd2222";
}
{
name = "Experience";
url = "https://dav.${domain}/${user}/experience/";
url = "https://${v}.${domain}/${user}/experience/";
color = "#2222dd";
}
{
name = "Exposure";
url = "https://dav.${domain}/${user}/exposure/";
url = "https://${v}.${domain}/${user}/exposure/";
color = "#22aa22";
}
{
name = "Engagement";
url = "https://dav.${domain}/${user}/engagement/";
url = "https://${v}.${domain}/${user}/engagement/";
color = "#8800CC";
}
{