omniflake/system/btrbk.nix
2023-07-06 01:12:16 +02:00

19 lines
444 B
Nix

{ config, pkgs, ... }:
{
services.btrbk = {
extraPackages = [ pkgs.mbuffer ];
instances.btrbk = {
onCalendar = "hourly";
settings = {
subvolume = "/home";
snapshot_preserve = "40d";
snapshot_preserve_min = "4d";
snapshot_dir = "/btrbk_snapshots";
target = "/run/media/till/backup";
target_preserve_min = "no";
target_preserve = "40d 52w *m";
};
};
};
}