flakes/hosts/alyssum/snapper.nix

20 lines
492 B
Nix
Raw Normal View History

2026-06-19 10:37:25 +10:00
{ ... }: {
services.snapper = {
cleanupInterval = "1h";
persistentTimer = true;
snapshotInterval = "*-*-* *:00,30:00";
configs.home = {
FSTYPE = "btrfs";
SUBVOLUME = "/flower";
TIMELINE_CLEANUP = true;
TIMELINE_CREATE = true;
TIMELINE_MIN_AGE = "86400";
TIMELINE_LIMIT_HOURLY = "24";
TIMELINE_LIMIT_DAILY = "7";
TIMELINE_LIMIT_WEEKLY = "5";
TIMELINE_LIMIT_MONTHLY = "3";
TIMELINE_LIMIT_YEARLY = "0";
};
};
}