nixos/grafana: Fix type of database.type option
If you want to use grafana with PostgreSQL, the type is `postgres`, not `postgresql`.
This commit is contained in:
parent
7f8bc042cc
commit
6ece306812
@ -111,7 +111,7 @@ in {
|
||||
type = mkOption {
|
||||
description = "Database type.";
|
||||
default = "sqlite3";
|
||||
type = types.enum ["mysql" "sqlite3" "postgresql"];
|
||||
type = types.enum ["mysql" "sqlite3" "postgres"];
|
||||
};
|
||||
|
||||
host = mkOption {
|
||||
|
Loading…
Reference in New Issue
Block a user