omniflake/system/btrbk.nix
2024-06-25 11:50:12 +02:00

18 lines
440 B
Nix

{ config, pkgs, ... }:
{
services.btrbk = {
instances.btrbk = {
onCalendar = "hourly";
settings = {
subvolume = "/home";
snapshot_preserve = "40d";
snapshot_preserve_min = "4d";
snapshot_dir = "/btrbk_snapshots";
target = "/run/media/till/backup/${config.networking.hostName}";
target_preserve_min = "latest";
target_preserve = "10d 10w *m";
};
};
};
}