nixos-servers/services/postgres/postgres.nix
Torjus Håkestad a9eeb8ada6
Some checks failed
Run nix flake check / flake-check (push) Failing after 6m3s
Add postgres host
2025-01-25 02:28:44 +01:00

13 lines
278 B
Nix

{ 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
'';
};
}