Skip to content

Commit a7e881f

Browse files
committedNov 28, 2017
nixos/grafana: Fix type of database.type option
If you want to use grafana with PostgreSQL, the type is `postgres`, not `postgresql`.
1 parent bc54631 commit a7e881f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nixos/modules/services/monitoring/grafana.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ in {
111111
type = mkOption {
112112
description = "Database type.";
113113
default = "sqlite3";
114-
type = types.enum ["mysql" "sqlite3" "postgresql"];
114+
type = types.enum ["mysql" "sqlite3" "postgres"];
115115
};
116116

117117
host = mkOption {

0 commit comments

Comments
 (0)
Please sign in to comment.