From 17c0846711a8d4eac17f2483eeffa7ffc2785ce6 Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 6 Sep 2024 22:44:11 +0200 Subject: puyak.r: use relative import --- krebs/1systems/puyak/config.nix | 85 ++++++++++++++++++++------------------ krebs/2configs/buildbot/worker.nix | 4 +- 2 files changed, 47 insertions(+), 42 deletions(-) (limited to 'krebs') diff --git a/krebs/1systems/puyak/config.nix b/krebs/1systems/puyak/config.nix index 82c1301ca..542106d5f 100644 --- a/krebs/1systems/puyak/config.nix +++ b/krebs/1systems/puyak/config.nix @@ -2,49 +2,52 @@ { imports = [ ./net.nix - - - - + ../../../krebs + ../../../krebs/2configs + ../../2configs/secret-passwords.nix + ../../2configs/hw/x220.nix # see documentation in included getty-for-esp.nix: # brain hosts/puyak/root - + ../../2configs/hw/getty-for-esp.nix + ../../2configs/buildbot/worker.nix ## initrd unlocking - # (brain hosts/puyak/luks-ssd;echo) | ssh root@$(brain krebs-secrets/puyak/initrd/hostname) 'cat > /crypt-ramfs/passphrase' - + # (brain hosts/puyak/luks-ssd;echo) | ssh root@$(brain krebs-secrets/puyak/initrd/hostname) 'cat /crypt-ramfs/passphrase' + ../../2configs/tor/initrd.nix - - + ../../2configs/binary-cache/nixos.nix + ../../2configs/binary-cache/prism.nix - - + ## news host + + ../../2configs/container-networking.nix + ../../2configs/syncthing.nix ### shackspace ### # handle the worlddomination map via coap - - + ../../2configs/shack/worlddomination.nix + ../../2configs/shack/ssh-keys.nix # drivedroid.shack for shackphone - - # + ../../2configs/shack/drivedroid.nix + # ../../2configs/shack/nix-cacher.nix # Say if muell will be collected - + ../../2configs/shack/muell_caller.nix # provide muellshack api: muell.shack - + ../../2configs/shack/muellshack.nix # send mail if muell was not handled - + ../../2configs/shack/muell_mail.nix # provide light control api - # light.shack lounge.light.shack power.light.shack openhab.shack lightapi.shack + ../../2configs/shack/node-light.nix # light.shack lounge.light.shack power.light.shack openhab.shack lightapi.shack # light.shack web-ui - #light.shack + ../../2configs/shack/light.shack.nix #light.shack # fetch the u300 power stats - + ../../2configs/shack/power/u300-power.nix { # do not log to /var/spool/log @@ -64,50 +67,50 @@ } # create samba share for anonymous usage with the laser and 3d printer pc - + ../../2configs/shack/share.nix # mobile.lounge.mpd.shack - + ../../2configs/shack/mobile.mpd.nix # hass.shack - - + ../../2configs/shack/glados + ../../2configs/shack/esphome.nix # connect to git.shackspace.de as group runner for rz - + ../../2configs/shack/gitlab-runner.nix # Statistics collection and visualization - # # graphiteApi is broken and unused(hopefully) + # ../../2configs/shack/graphite.nix # graphiteApi is broken and unused(hopefully) ## Collect data from mqtt.shack and store in graphite database - + ../../2configs/shack/mqtt_sub.nix ## Collect radioactive data and put into graphite - + ../../2configs/shack/radioactive.nix ## mqtt.shack - + ../../2configs/shack/mqtt.nix ## influx.shack - + ../../2configs/shack/influx.nix ## Collect local statistics via collectd and send to collectd - # - # + # ../../2configs/stats/shack-client.nix + # ../../2configs/stats/shack-debugging.nix ## netbox.shack: Netbox is disabled as nobody seems to be using it anyway - # + # ../../2configs/shack/netbox.nix # grafana.shack - + ../../2configs/shack/grafana.nix # shackdns.shack # replacement for leases.shack and shackles.shack - + ../../2configs/shack/shackDNS.nix # monitoring: prometheus.shack - - - - # + ../../2configs/shack/prometheus/node.nix + ../../2configs/shack/prometheus/server.nix + ../../2configs/shack/prometheus/blackbox.nix + #../../2configs/shack/prometheus/unifi.nix # TODO: alertmanager 0.24+ supports telegram - # + # ../../2configs/shack/prometheus/alertmanager-telegram.nix ]; krebs.build.host = config.krebs.hosts.puyak; diff --git a/krebs/2configs/buildbot/worker.nix b/krebs/2configs/buildbot/worker.nix index e96c6df14..5526a83d3 100644 --- a/krebs/2configs/buildbot/worker.nix +++ b/krebs/2configs/buildbot/worker.nix @@ -1,4 +1,4 @@ -{ buildbot-nix, ... }: +{ config, buildbot-nix, ... }: { imports = [ buildbot-nix.nixosModules.buildbot-worker @@ -6,6 +6,8 @@ services.buildbot-nix.worker = { enable = true; + name = config.krebs.build.host.name; workerPasswordFile = "/var/src/secrets/nix-worker-file"; + masterUrl = "tcp:host=gum:port=9989"; }; } -- cgit v1.2.3