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; blueman.enable = true;
snapper.configs = { snapper.configs = {
home = { home = {
subvolume = "/home"; SUBVOLUME = "/home";
extraConfig = '' ALLOW_USERS = [ "me" ];
ALLOW_USERS="me" TIMELINE_CREATE = true;
TIMELINE_CREATE=yes TIMELINE_CLEANUP = true;
TIMELINE_CLEANUP=yes
'';
}; };
}; };
}; };