PostgreSQL: Don't specify a default PostgreSQL package

The user should specify which major version to use
(e.g. "services.postgresql.package = pkgs.postgresql92").  We can't
really provide a sensible default, because such a default would have
to be updated from time to time, and there is no automated upgrade
procedure.  So leave upgrading to the user.
This commit is contained in:
Eelco Dolstra 2013-04-04 18:21:51 +02:00
parent 3d93fb9243
commit a446fa9099

View File

@ -53,7 +53,7 @@ in
}; };
package = mkOption { package = mkOption {
default = pkgs.postgresql; example = literalExample "pkgs.postgresql92";
description = '' description = ''
PostgreSQL package to use. PostgreSQL package to use.
''; '';