diff options
author | makefu <github@syntax-fehler.de> | 2022-02-14 20:06:09 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-02-14 20:06:09 +0100 |
commit | a139dd358b948bd5228ade9222b615e7c5006691 (patch) | |
tree | 5186f4077ca66021c6ede9483653f38e0d8d3f3d /krebs | |
parent | a677e709924001ff1b1b591b6011184fb90addd9 (diff) |
shack/influx: add workaround for collectd
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/2configs/shack/influx.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/krebs/2configs/shack/influx.nix b/krebs/2configs/shack/influx.nix index 93d83a59b..6d090323d 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 = { |