16 lines
396 B
Nix
16 lines
396 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
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 = "no";
|
|
target_preserve = "7d 4w 24m";
|
|
};
|
|
};
|
|
}
|