omniflake/system/btrbk.nix
2023-07-05 21:32:53 +02:00

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