diff --git a/home-modules/calendar.nix b/home-modules/calendar.nix index b962ccc..67a0b1e 100644 --- a/home-modules/calendar.nix +++ b/home-modules/calendar.nix @@ -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"; } {