13 lines
259 B
Nix
13 lines
259 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.btrbk.instances.btrbk = {
|
|
onCalendar = "hourly";
|
|
settings = {
|
|
snapshot_preserve = "40d";
|
|
snapshot_preserve_min = "7d";
|
|
snapshot_dir = "/btrbk_snapshots";
|
|
subvolume = "/home";
|
|
};
|
|
};
|
|
}
|