nixos/hosts/homelab/postgres.nix

8 lines
185 B
Nix
Raw Normal View History

2025-04-23 00:02:00 +02:00
{config, ...}: {
services = {
restic.backups.homelab.paths = [config.services.postgresqlBackup.location];
postgresql.enable = true;
postgresqlBackup.enable = true;
};
}