summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorErik Skytthe <ers@dbc.dk>2021-06-16 11:12:51 +0200
committerGitHub <noreply@github.com>2021-06-16 11:12:51 +0200
commitd1b41581553dee8a89f645d0abec6136908fd5f5 (patch)
tree5c16c254d8c90b7e4827b9abd1e084ef3a075b14 /nixos/modules/services/monitoring
parent5ad54b5bc9c705020cce51dbd91f81a019792628 (diff)
downloadnixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar.gz
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar.bz2
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar.lz
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar.xz
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.tar.zst
nixpkgs-d1b41581553dee8a89f645d0abec6136908fd5f5.zip
nixos/grafana: Change services.grafana.provision.datasources.*.type to be open (#126831)
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/grafana.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index b243e24591e..c3e1f72945b 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -94,7 +94,7 @@ let
         description = "Name of the datasource. Required.";
       };
       type = mkOption {
-        type = types.enum ["graphite" "prometheus" "cloudwatch" "elasticsearch" "influxdb" "opentsdb" "mysql" "mssql" "postgres" "loki"];
+        type = types.str;
         description = "Datasource type. Required.";
       };
       access = mkOption {