Compare commits
2 commits
3dc21e88a8
...
ab311adbb6
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | ab311adbb6 | ||
Antoine Martin | a21de59c5d |
|
@ -95,8 +95,18 @@ in {
|
|||
];
|
||||
};
|
||||
|
||||
# NOTE: no need to use postgresql.ensureDatabases because the gitea module
|
||||
# takes care of this automatically
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
|
||||
ensureDatabases = ["gitea"];
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "git";
|
||||
ensurePermissions."DATABASE gitea" = "ALL PRIVILEGES";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
services.postgresqlBackup = {
|
||||
databases = ["gitea"];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue