1
Fork 0

Auto rollback zfs on boot

This commit is contained in:
Matei Adriel 2024-01-18 08:54:14 +01:00
parent b879f6e197
commit 5074472017
No known key found for this signature in database

View file

@ -8,20 +8,18 @@ in
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.kernelParams = [ "nohibernate" ]; boot.kernelParams = [ "nohibernate" ];
boot.initrd.systemd.services = { # {{{ Rollback
# # {{{ Rollback boot.initrd.systemd.services.rollback = {
# rollback = { path = [ pkgs.zfs ];
# path = [ pkgs.zfs ]; serviceConfig = {
# serviceConfig = { Type = "oneshot";
# Type = "oneshot"; RemainAfterExit = true;
# RemainAfterExit = true; };
# }; unitConfig.DefaultDependencies = "no";
# unitConfig.DefaultDependencies = "no"; wantedBy = [ "initrd.target" ];
# wantedBy = [ "initrd.target" ]; after = [ "zfs-import.target" ];
# after = [ "zfs-import.target" ]; before = [ "sysroot.mount" ];
# before = [ "sysroot.mount" ]; script = "zfs rollback -r zroot@blank";
# script = "zfs rollback -r zroot@blank";
# };
# # }}}
}; };
# }}}
} }