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";
|
description = "Manually configure postgres instead";
|
||||||
};
|
};
|
||||||
|
|
||||||
postgresHost = mkOption {
|
postgresDBHost = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "127.0.0.1";
|
default = "127.0.0.1";
|
||||||
description = "Host for postgres";
|
description = "Host for postgres";
|
||||||
};
|
};
|
||||||
|
|
||||||
postgresPort = mkOption {
|
postgresDBPort = mkOption {
|
||||||
type = types.number;
|
type = types.number;
|
||||||
default = 5432;
|
default = 5432;
|
||||||
description = "Port for postgres";
|
description = "Port for postgres";
|
||||||
|
@ -90,7 +90,7 @@ in {
|
||||||
postgresDBUsername = mkOption {
|
postgresDBUsername = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "piped";
|
default = "piped";
|
||||||
description = "Host postgres is on";
|
description = "Postgres username";
|
||||||
};
|
};
|
||||||
|
|
||||||
postgresDBPassword = mkOption {
|
postgresDBPassword = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue