diff --git a/machines/Home-Hypervisor/backups.nix b/machines/Home-Hypervisor/backups.nix index 56584fd..fcdf5f4 100644 --- a/machines/Home-Hypervisor/backups.nix +++ b/machines/Home-Hypervisor/backups.nix @@ -31,6 +31,7 @@ in { timeout = "10min"; }; backup = { + host = config.device; label = label; ignore-devid = true; glob = [ @@ -51,9 +52,9 @@ in { forget = { filter-label = [ label ]; prune = true; - keep-daily = 7; - keep-weekly = 5; - keep-monthly = 2; + keep-daily = 5; + keep-weekly = 2; + keep-monthly = 1; }; }; }; diff --git a/machines/NixOS-VPS/services/backups.nix b/machines/NixOS-VPS/services/backups.nix index 3ab0a6a..4bee5ed 100644 --- a/machines/NixOS-VPS/services/backups.nix +++ b/machines/NixOS-VPS/services/backups.nix @@ -22,6 +22,7 @@ timeout = "10min"; }; backup = { + host = config.device; label = label; ignore-devid = true; sources = [{ @@ -31,9 +32,9 @@ forget = { filter-label = [ label ]; prune = true; - keep-daily = 7; - keep-weekly = 5; - keep-monthly = 2; + keep-daily = 5; + keep-weekly = 2; + keep-monthly = 1; }; }; };