services: gitea: adapt to 23.11 postgres changes

This commit is contained in:
Antoine Martin 2023-12-05 09:41:12 +01:00
parent 2b8341ea9c
commit f3d2d291c5

View file

@ -85,6 +85,9 @@ in {
type = "postgres"; type = "postgres";
# user needs to be the same as gitea user # user needs to be the same as gitea user
user = giteaUser; user = giteaUser;
# FIXME: change database name to match 23.11 postgres changes around ensureDatabase
createDatabase = false;
socket = "/run/postgresql";
}; };
}; };
@ -102,7 +105,7 @@ in {
# NOTE: no need to use postgresql.ensureDatabases because the gitea module # NOTE: no need to use postgresql.ensureDatabases because the gitea module
# takes care of this automatically # takes care of this automatically
services.postgresqlBackup = { services.postgresqlBackup = {
databases = ["gitea"]; databases = [config.services.gitea.database.name];
}; };
services.nginx = { services.nginx = {