fruitbasket/modules/postgres.nix

9 lines
154 B
Nix
Raw Normal View History

2023-08-21 11:40:56 +02:00
{ ... }:
{
# automatically back up all databases
services.postgresqlBackup = {
enable = true;
location = "/var/lib/backup/postgresql";
};
}