diff options
| author | Jacob Moody <moody@posixcafe.org> | 2023-05-26 23:46:40 -0600 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-06-06 22:11:42 +0000 |
| commit | 470487d1d9575a58cb73a2b13160ff82dead7cea (patch) | |
| tree | 3bf19d8419fc666728f5119a9cf14908a075bdd5 | |
| parent | electron_25-bin: init 25.0.1 (diff) | |
| download | nixpkgs-origin/backport-234364-to-release-23.05.tar.gz | |
nixos/grafana: add jsonData datasource optionorigin/backport-234364-to-release-23.05
(cherry picked from commit 972de27071032d777bb945ec0edba97e480bcc30)
| -rw-r--r-- | nixos/modules/services/monitoring/grafana.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index e74ee641db38..adffadf3fc47 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -121,6 +121,11 @@ let default = false; description = lib.mdDoc "Allow users to edit datasources from the UI."; }; + jsonData = mkOption { + type = types.nullOr types.attrs; + default = null; + description = lib.mdDoc "Extra data for datasource plugins."; + }; secureJsonData = mkOption { type = types.nullOr types.attrs; default = null; |
