nix/nixos/common/services/snapper.nix

26 lines
763 B
Nix
Raw Normal View History

2023-12-12 06:26:36 +01:00
{ lib, pkgs, desktop, ... }: {
2023-12-12 06:49:35 +01:00
environment.systemPackages = [ pkgs.snapper ] ++ lib.optional (builtins.isString desktop) pkgs.snapper-gui;
services.snapper = {
snapshotRootOnBoot = true;
cleanupInterval = "1d";
snapshotInterval = "1h";
2023-12-24 03:02:20 +01:00
configs = {
root = {
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
2023-12-25 08:45:46 +01:00
SUBVOLUME = "/";
2023-12-24 03:02:20 +01:00
};
home = {
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
2023-12-25 09:21:33 +01:00
SUBVOLUME = "home";
2023-12-24 03:02:20 +01:00
};
nix = {
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
2023-12-25 09:21:33 +01:00
SUBVOLUME = "nix";
2023-12-24 03:02:20 +01:00
};
};
};
}