hosts/plover: enable PostgreSQL dump service

This commit is contained in:
Gabriel Arazas 2022-12-11 18:09:49 +08:00
parent 22bc41896c
commit 74fa10f348

View File

@ -190,6 +190,16 @@ in
];
};
# With a database comes a dumping.
services.postgresqlBackup = {
enable = true;
compression = "zstd";
compressionLevel = 11;
# Start at every 3 days starting from the first day of the month.
startAt = "*-*-1/3";
};
# My code forge.
services.gitea = {
enable = true;