From 8f172ed10a376e5611c173e293510dbe946aab4b Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 2 Apr 2023 16:48:36 +0300 Subject: [PATCH] nixos/grafana-image-renderer: fix setting name --- nixos/modules/services/monitoring/grafana-image-renderer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/monitoring/grafana-image-renderer.nix b/nixos/modules/services/monitoring/grafana-image-renderer.nix index 7ea17b07567c..36258866646a 100644 --- a/nixos/modules/services/monitoring/grafana-image-renderer.nix +++ b/nixos/modules/services/monitoring/grafana-image-renderer.nix @@ -107,7 +107,7 @@ in { ]; services.grafana.settings.rendering = mkIf cfg.provisionGrafana { - url = "http://localhost:${toString cfg.settings.service.port}/render"; + server_url = "http://localhost:${toString cfg.settings.service.port}/render"; callback_url = "http://localhost:${toString config.services.grafana.settings.server.http_port}"; };