db setup immich

This commit is contained in:
soraefir
2026-05-15 00:12:30 +02:00
parent 56252474d9
commit 45e375168e
2 changed files with 8 additions and 1 deletions

View File

@@ -43,4 +43,12 @@ in {
};
};
setup = {
trigger = "server";
script = pkgs.writeShellScript "setup" ''
PSQL="${pkgs.postgresql}/bin/psql"
$PSQL -d "immich_db" -tAc "CREATE EXTENSION IF NOT EXISTS vector;"
$PSQL -d "immich_db" -tAc "CREATE EXTENSION IF NOT EXISTS earthdistance;"
'';
};
}