omniflake/system/btrbk.nix
2024-12-26 16:07:44 +01:00

18 lines
441 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 24m";
};
};
};
}