nix-config/hosts/containers/ticker/default.nix

164 lines
5.1 KiB
Nix

{ zentralwerk, config, lib, pkgs, ... }:
with lib;
{
system.stateVersion = "22.05";
c3d2.hq.statistics.enable = true;
c3d2.deployment = {
server = "server10";
mounts = [ "etc" "var"];
};
networking = {
hostName = "ticker";
firewall.allowedTCPPorts = [ 22 80 443 ];
};
services = {
nginx = {
enable = true;
virtualHosts."ticker.c3d2.de" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:8400";
};
};
ticker = {
updateInterval = "hourly";
config.calendars = {
c3d2 = {
url = "https://c3d2.de/ical.ics";
color = "#BFA73F";
};
dresden-science = {
url = "https://www.dresden-science-calendar.de/calendar/de/iCalSync.ics";
color = "#00007F";
};
gruenes-brett = {
url = "https://dresden.gruenesbrett.net/ical/all/";
color = "#00BF00";
};
stura-htw = {
url = "http://www.stura.htw-dresden.de/events/aggregator/ics_view";
color = "#BF3FA7";
};
malobeo = {
url = "https://malobeo.org/events/list/?ical=1&tribe_display=all";
color = "#FF3F3F";
};
hicknhack = {
url = "https://www.google.com/calendar/ical/grhnk1uaotql6gv2dkf9ldmqjc%40group.calendar.google.com/public/basic.ics";
color = "#A700A7";
};
palaissommer = {
url = "https://palaissommer.de/programm/?event=all";
color = "#7F003F";
};
kreta = {
url = "https://www.kreta-dresden.org/kreta.ics";
color = "#BF3F7F";
};
zentralwerk = {
url = "https://ics.teamup.com/feed/ksayh65fgotv2prcas/0.ics";
color = "#FF3F3F";
};
and = {
url = "https://and.notraces.net/events/?ical=1";
color = "#FF7F00";
};
rosenwerk-home = {
url = "https://www.google.com/calendar/ical/bj85d742g31mgkblbaiusmk3s8%40group.calendar.google.com/public/basic.ics";
color = "#DF003F";
};
rosenwerk-kultur = {
url = "https://www.google.com/calendar/ical/93enn926ddhgr79hnqp83ipj3g%40group.calendar.google.com/public/basic.ics";
color = "#BF001F";
};
haengemathe = {
url = "https://club-haengemathe.de/termine.ics";
color = "#FF7F3F";
};
bitsundbaeumedresden = {
url = "https://dresden.bits-und-baeume.org/termine.ics";
color = "#3FBF3F";
};
exma-stuta = {
url = "https://www.exmatrikulationsamt.de/ics/v1/stuta.ics";
color = "#7F7FFF";
};
exma-nawa = {
url = "https://www.exmatrikulationsamt.de/ics/v1/nawa.ics";
color = "#3F3FBF";
};
ratsinfo = {
url = "https://github.com/offenesdresden/dresden-ratsinfo/raw/master/meetings.ics";
color = "#BFBF3F";
};
filmnaechte = {
url = "https://dresden.filmnaechte.de/veranstaltung?tx_events_frontend%5Baction%5D=ical&tx_events_frontend%5Bcontroller%5D=Event&tx_events_frontend%5Bevent%5D=26&cHash=d38f8b752d27504bb578a1d8a361721a";
color = "#16182c";
};
riesa-efau = {
url = "https://scrape.hq.c3d2.de/riesa-efau-kalender.ics";
color = "#7FBF7F";
};
gartennetzwerk = {
url = "https://www.dresden-pflanzbar.de/?plugin=all-in-one-event-calendar&controller=ai1ec_exporter_controller&action=export_events&no_html=true";
color = "#3FAF00";
};
ffdd = {
url = "https://mobilizon.envs.net/@ffdd/feed/ics";
color = "#AFAF00";
};
dhmd = {
url = "https://scrape.hq.c3d2.de/dhmd-veranstaltungen.ics";
color = "#E00728";
};
ds21 = {
url = "https://talks.datenspuren.de/ds21/schedule.ics";
color = "#40A940";
};
medienkulturzentrum = {
url = "https://scrape.hq.c3d2.de/mkz-programm.ics";
color = "#DF3FBF";
};
ddosug = {
url = "https://www.meetup.com/de-DE/ddos-usergroup/events/ical/";
color = "#001F3F";
};
diwo = {
url = "https://pretix.eu/diwoweek/events/ical/?locale=de";
color = "#723465";
};
gaertjen = {
url = "https://gaertjen.de/kalender/?ical=1";
color = "#3FDFAF";
};
klimacamp-dresden = {
url = "https://spaceboyz.net/~astro/KlimacampDresden.ics";
color = "#7B996A";
};
gefilte-fest-dresden = {
url = "http://gefilte-fest-dresden.de/feed/my-calendar-google/";
color = "#4B693A";
};
dresden-versammlungen = {
url = "https://scrape.hq.c3d2.de/dresden-versammlungen.ics";
color = "#2F2700";
};
azconni = {
url = "https://scrape.hq.c3d2.de/azconni.ics";
color = "#CF3F00";
};
impact-hub = {
url = "https://dresden.impacthub.net/calendar/liste/?hide_subsequent_recurrences=0&ical=1";
color = "#3F2FCF";
};
};
};
};
}