1
0
Fork 0

fix DB suffix on some options

This commit is contained in:
chaos 2023-09-08 11:50:17 +01:00
parent e57ee8ebe9
commit ac7393b9e6
No known key found for this signature in database

View file

@ -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 {