nixos-servers/services/postgres/postgres.nix

13 lines
278 B
Nix
Raw Normal View History

2025-01-25 01:28:44 +00:00
{ pkgs, ... }:
{
services.postgresql = {
enable = true;
enableJIT = true;
enableTCPIP = true;
authentication = ''
# Allow access to everything from gunter
host all all 10.69.30.105/32 scram-sha-256
'';
};
}