Torjus Håkestad 3787fb37be
Some checks failed
Run nix flake check / flake-check (push) Failing after 8m7s
Periodic flake update / flake-update (push) Successful in 1m29s
Fix typo in postgres config
2025-02-05 13:14:24 +01:00

14 lines
322 B
Nix

{ pkgs, ... }:
{
services.postgresql = {
enable = true;
enableJIT = true;
enableTCPIP = true;
extensions = ps: with ps; [ pgvector ];
authentication = ''
# Allow access to everything from gunter
host all all 10.69.30.105/32 scram-sha-256
'';
};
}