1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

nextcloud module: document process for using with pgsql unix auth

This commit is contained in:
Léo Gaspard 2018-11-10 12:30:54 +09:00
parent bfab4b1623
commit 221e0fae38
No known key found for this signature in database
GPG key ID: 8A55848B6090F9CF

View file

@ -171,7 +171,12 @@ in {
dbhost = mkOption {
type = types.nullOr types.str;
default = "localhost";
description = "Database host.";
description = ''
Database host.
Note: for using Unix authentication with PostgreSQL, this should be
set to <literal>/tmp</literal>.
'';
};
dbport = mkOption {
type = with types; nullOr (either int str);