summaryrefslogtreecommitdiffstats
path: root/krebs/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2022-02-14 20:06:09 +0100
committermakefu <github@syntax-fehler.de>2022-02-14 20:06:09 +0100
commita139dd358b948bd5228ade9222b615e7c5006691 (patch)
tree5186f4077ca66021c6ede9483653f38e0d8d3f3d /krebs/2configs
parenta677e709924001ff1b1b591b6011184fb90addd9 (diff)
shack/influx: add workaround for collectd
Diffstat (limited to 'krebs/2configs')
-rw-r--r--krebs/2configs/shack/influx.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/krebs/2configs/shack/influx.nix b/krebs/2configs/shack/influx.nix
index 93d83a59..6d090323 100644
--- a/krebs/2configs/shack/influx.nix
+++ b/krebs/2configs/shack/influx.nix
@@ -17,6 +17,14 @@ in
proxyPass = "http://localhost:${toString port}/";
};
};
+ nixpkgs.overlays = [
+ (self: super:
+ {
+ # Hotfix for https://github.com/NixOS/nixpkgs/issues/157543
+ collectd = super.collectd.override { xen = null; };
+ }
+ )
+ ];
services.influxdb = {
enable = true;
extraConfig = {