shack/influx: add workaround for collectd

This commit is contained in:
makefu 2022-02-14 20:06:09 +01:00
parent a677e70992
commit a139dd358b
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -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 = {