diff --git a/hosts/containers/scrape/configuration.nix b/hosts/containers/scrape/configuration.nix index 1eb89d9b..266d864f 100644 --- a/hosts/containers/scrape/configuration.nix +++ b/hosts/containers/scrape/configuration.nix @@ -43,6 +43,10 @@ script = "xerox"; host = "roxi.hq.c3d2.de"; }; + scrape-luftdaten = makeService { + script = "luftdaten"; + host = ""; + }; }; systemd.timers.scrape-xeri = { partOf = [ "scrape-xeri.service" ]; @@ -54,6 +58,11 @@ wantedBy = [ "timers.target" ]; timerConfig.OnCalendar = "minutely"; }; + systemd.timers.scrape-luftdaten = { + partOf = [ "scrape-luftdaten.service" ]; + wantedBy = [ "timers.target" ]; + timerConfig.OnCalendar = "minutely"; + }; # This value determines the NixOS release with which your system is to be # compatible, in order to avoid breaking some software such as database diff --git a/krops.nix b/krops.nix index 3550db39..f8e4d1c9 100644 --- a/krops.nix +++ b/krops.nix @@ -27,6 +27,6 @@ let target = "root@${host}"; }; in { - scrape = deployContainer "scrape" "172.20.73.28"; + scrape = deployContainer "scrape" "172.20.73.32"; ledstripes = deployContainer "ledstripes" "172.22.99.168"; }