nixos-conf/shared/hardware/impermanence.nix

16 lines
280 B
Nix
Raw Normal View History

2025-06-29 12:39:15 +03:00
{ lib, ... }:
{
services.zfs = {
autoScrub.enable = true;
autoSnapshot = {
enable = true;
flags = "-k -p --utc";
};
};
boot.initrd.postResumeCommands = lib.mkAfter ''
zfs rollback -r zroot/root@blank
zfs rollback -r zroot/home@blank
'';
}