Torjus Håkestad e717102a93
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
Add pvector for postgres
2025-02-05 13:13:36 +01:00

14 lines
327 B
Nix

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