nixpkgs and snapper update

This commit is contained in:
Rouven Seifert 2023-05-16 19:41:06 +02:00
parent 3a5c757b01
commit 2068b655da
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 17 additions and 21 deletions

View file

@ -3,20 +3,16 @@
services.snapper = {
configs = {
home = {
subvolume = "/home";
extraConfig = ''
ALLOW_USERS="rouven"
TIMELINE_CREATE=yes
TIMELINE_CLEANUP=yes
'';
SUBVOLUME = "/home";
ALLOW_USERS = [ "rouven" ];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
};
lib = {
subvolume = "/var/lib";
extraConfig = ''
ALLOW_USERS="rouven"
TIMELINE_CREATE=yes
TIMELINE_CLEANUP=yes
'';
SUBVOLUME = "/var/lib";
ALLOW_USERS = [ "rouven" ];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
};
};
};