1
Fork 0
satellite/modules/applications/postgres.nix

16 lines
519 B
Nix
Raw Normal View History

2020-05-09 23:38:47 +02:00
{ pkgs, lib, ... }: {
services.postgresql = {
enable = true;
package = pkgs.postgresql_10;
enableTCPIP = true;
authentication = lib.mkForce ''
# Generated file; do not edit!
# TYPE DATABASE USER ADDRESS METHOD
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
'';
};
}