ROCKPro64-Server/system/devices/disks/snapper/root/default.nix

13 lines
263 B
Nix
Raw Normal View History

{ ... }:
2025-02-28 12:21:09 -05:00
{
services.snapper.configs.root = {
2025-02-28 12:21:09 -05:00
SUBVOLUME = "/persist";
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
TIMELINE_LIMIT_DAILY = 1;
TIMELINE_LIMIT_WEEKLY = 0;
TIMELINE_LIMIT_MONTHLY = 0;
TIMELINE_LIMIT_YEARLY = 0;
};
}