database backup refining

This commit is contained in:
2025-10-17 20:03:56 -05:00
parent 6d3ae434a5
commit 06ec73de0b
3 changed files with 6 additions and 9 deletions

View File

@@ -117,7 +117,7 @@ in
lib.mapAttrsToList (srv_name: cfg:
{
name = srv_name; # attribute key
value = { paths = [ cfg.data_dir ]; }; # attribute value
value = { paths = [ cfg.data_dir "/var/backups/${service}_db.zst" ]; }; # attribute value
}
) servers
);