nixos/grafana: add jsonData datasource option (#234364)

This commit is contained in:
Jacob Moody 2023-06-06 17:11:10 -05:00 committed by GitHub
parent 06227275ae
commit 39f220b6df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;