fix DB suffix on some options
This commit is contained in:
parent
e57ee8ebe9
commit
ac7393b9e6
|
@ -69,13 +69,13 @@ in {
|
|||
description = "Manually configure postgres instead";
|
||||
};
|
||||
|
||||
postgresHost = mkOption {
|
||||
postgresDBHost = mkOption {
|
||||
type = types.str;
|
||||
default = "127.0.0.1";
|
||||
description = "Host for postgres";
|
||||
};
|
||||
|
||||
postgresPort = mkOption {
|
||||
postgresDBPort = mkOption {
|
||||
type = types.number;
|
||||
default = 5432;
|
||||
description = "Port for postgres";
|
||||
|
@ -90,7 +90,7 @@ in {
|
|||
postgresDBUsername = mkOption {
|
||||
type = types.str;
|
||||
default = "piped";
|
||||
description = "Host postgres is on";
|
||||
description = "Postgres username";
|
||||
};
|
||||
|
||||
postgresDBPassword = mkOption {
|
||||
|
|
Loading…
Reference in a new issue