From 3771102bb3d3cb3635a7e4fbfc2e4d98aeee07d4 Mon Sep 17 00:00:00 2001 From: Matthias Wirtz Date: Mon, 13 Jan 2025 17:23:23 +0100 Subject: [PATCH] fix(nix): temporarily disable browser locale in date formats for nix deployment as well (#4480) --- nix/module.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index ab8a3f59..2197aaf7 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -256,7 +256,9 @@ in "auth.basic".enabled = false; analytics.reporting_enabled = false; dashboards.default_home_dashboard_path = "../grafana/dashboards/internal/home.json"; - date_formats.use_browser_locale = true; + # This experimental config option is temporarily disabled (incompatible with Grafana 11.4.0) + # https://github.com/grafana/grafana/issues/95209 + # date_formats.use_browser_locale = true; }; provision = { enable = true;