New config structure for snapper

This commit is contained in:
Valentin Brandl 2023-08-04 12:46:54 +02:00
parent aec6e76c42
commit d3a124324f
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -35,12 +35,10 @@ inputs.nixpkgs.lib.nixosSystem {
blueman.enable = true;
snapper.configs = {
home = {
subvolume = "/home";
extraConfig = ''
ALLOW_USERS="me"
TIMELINE_CREATE=yes
TIMELINE_CLEANUP=yes
'';
SUBVOLUME = "/home";
ALLOW_USERS = [ "me" ];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
};
};
};