diff options
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 = { |