I'm using snapper on btrfs and it doesn't seem to take automatic snapshots, even though the services seem to be running and the timer is working. I'm not sure what other info I can give you.
It does, however, take snapshots manually.
Install snapper, add configuration to whatever.nix.
"x86_64-linux"Linux 4.9.78, NixOS, 17.09.2905.c1d9aff56e0 (Hummingbird)yesnonix-env (Nix) 1.11.16"nixos-17.09.2905.c1d9aff56e0"/nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgsCan you post your config (the part with the snapper config)?
services.snapper.configs."root".subvolume = "/";
Try adding the following to your config:
services.snapper.configs.root.extraConfig = ''
TIMELINE_CREATE="yes"
'';
According to the man page (snapper-configs) the default is no for time line snapshots.
That did it, thanks.
Most helpful comment
Try adding the following to your config:
According to the man page (snapper-configs) the default is
nofor time line snapshots.