Files
LiNix/hosts/desktop/snapshot.nix
2025-10-17 13:20:46 -05:00

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";
};
};
};
};
};
}