mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
35 lines
702 B
Nix
35 lines
702 B
Nix
{ config, ... }:
|
|
{
|
|
services.snapper = {
|
|
snapshotRootOnBoot = true;
|
|
configs = {
|
|
root = {
|
|
subvolume = "/";
|
|
extraConfig = ''
|
|
ALLOW_USERS="rouven"
|
|
TIMELINE_CREATE=yes
|
|
TIMELINE_CLEANUP=yes
|
|
NUMBER_LIMIT=10
|
|
NUMBER_CLEANUP=yes
|
|
'';
|
|
};
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|