services.pgmanage.connections
NixOS option
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.
type: attribute set of stringDefault
{ }Example
declared in: nixos/modules/services/databases/pgmanage.nixView source on NixOS/nixpkgs →{
mini-server = "hostaddr=127.0.0.1 port=5432 dbname=postgres sslmode=require";
nuc-server = "hostaddr=192.168.0.100 port=5432 dbname=postgres";
}