add vector pgsql

This commit is contained in:
soraefir
2026-05-14 23:51:31 +02:00
parent 51bd495981
commit 0ee26c817c

View File

@@ -9,7 +9,8 @@ in {
config = lib.mkIf ( builtins.length allApps > 0) {
services.postgresql = {
enable = true;
enableTCPIP = true; # Required to listen on network interfaces
enableTCPIP = true;
extensions = ps: with ps; [ pgvector pg_repack ];
settings = {
listen_addresses = lib.mkForce "*";
};