mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
nixpkgs and snapper update
This commit is contained in:
parent
3a5c757b01
commit
2068b655da
2 changed files with 17 additions and 21 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue