MyNixOS website logo
option

services.pgmanage.connections

pgmanage requires at least one PostgreSQL server be defined.

Detailed information about PostgreSQL connection strings is available at: https://www.postgresql.org/docs/current/libpq-connect.html

Note that you should not specify your user name or password. That information will be entered on the login screen. If you specify a username or password, it will be removed by pgmanage before attempting to connect to a database.

Declarations
Type
attribute set of string
Default
{ }
Example
{
  mini-server = "hostaddr=127.0.0.1 port=5432 dbname=postgres sslmode=require";
  nuc-server = "hostaddr=192.168.0.100 port=5432 dbname=postgres";
}