nixos-config/hosts/thinkpad/modules/snapper/default.nix

24 lines
438 B
Nix
Raw Normal View History

2023-02-16 22:25:26 +01:00
{ config, ... }:
{
services.snapper = {
configs = {
home = {
subvolume = "/home";
extraConfig = ''
ALLOW_USERS="rouven"
TIMELINE_CREATE=yes
TIMELINE_CLEANUP=yes
'';
};
lib = {
subvolume = "/var/lib";
extraConfig = ''
ALLOW_USERS="rouven"
TIMELINE_CREATE=yes
TIMELINE_CLEANUP=yes
'';
};
};
};
}