nixos: services: migrate to 'ensureDBOwnership'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

`ensurePermissions` is deprecated, and doesn't work on PostgreSQL 15.
This commit is contained in:
Bruno BELANYI 2023-11-21 00:18:29 +01:00
parent 60d941b40b
commit b48d81451d
7 changed files with 7 additions and 11 deletions

View file

@ -109,7 +109,7 @@ in
ensureUsers = [
{
name = "vikunja";
ensurePermissions = { "DATABASE vikunja" = "ALL PRIVILEGES"; };
ensureDBOwnership = true;
}
];
};