Skip to content

Commit

Permalink
nixos/grafana: Fix type of database.type option
Browse files Browse the repository at this point in the history
If you want to use grafana with PostgreSQL, the type is `postgres`,
not `postgresql`.
  • Loading branch information
ocharles committed Nov 28, 2017
1 parent bc54631 commit a7e881f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/monitoring/grafana.nix
Expand Up @@ -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 {
Expand Down

0 comments on commit a7e881f

Please sign in to comment.