32 lines
633 B
Nix
32 lines
633 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
services.btrbk = {
|
|
instances."local_snapshots" = {
|
|
onCalendar = "hourly";
|
|
settings = {
|
|
snapshot_preserve = "14d 8w 120m";
|
|
snapshot_preserve_min = "7d";
|
|
volume = {
|
|
"/media/2tb" = {
|
|
snapshot_dir = "/media/2tb/@snapshots";
|
|
subvolume = "@home";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
instances."duplicate_to_second_drive" = {
|
|
onCalendar = "daily";
|
|
settings = {
|
|
snapshot_preserve = "14d 8w 120m";
|
|
snapshot_preserve_min = "7d";
|
|
volume = {
|
|
"/media/2tb" = {
|
|
target = "/media/12tb/@snapshots";
|
|
subvolume = "@home";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|