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
|
services.postgresql = {
|
||||||
# takes care of this automatically
|
enable = true;
|
||||||
|
|
||||||
|
ensureDatabases = ["gitea"];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = "git";
|
||||||
|
ensurePermissions."DATABASE gitea" = "ALL PRIVILEGES";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
services.postgresqlBackup = {
|
services.postgresqlBackup = {
|
||||||
databases = ["gitea"];
|
databases = ["gitea"];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue