Updated nix module to fix postgresql ensureUsers
This commit is contained in:
parent
2579b4b8fc
commit
a8a5f56661
1 changed files with 3 additions and 2 deletions
|
@ -367,8 +367,9 @@ in
|
|||
|
||||
ensureDatabases = [ cfg.database.database ];
|
||||
ensureUsers = [
|
||||
{ name = cfg.database.user;
|
||||
ensurePermissions = { "DATABASE ${cfg.database.database}" = "ALL PRIVILEGES"; };
|
||||
{
|
||||
name = cfg.database.user;
|
||||
ensureDBOwnership = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue