1
Fork 0
satellite/hosts/nixos/lapetus/filesystems/zfs.nix
2024-02-12 17:08:36 +01:00

26 lines
657 B
Nix

{ config, pkgs, ... }:
let secretMountpoint = "/hermes";
in
{
# Configure ZFS
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.extraPools = [ "zroot" ];
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.kernelParams = [ "nohibernate" ];
# {{{ Rollback
boot.initrd.systemd.services.rollback = {
path = [ pkgs.zfs ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
};
unitConfig.DefaultDependencies = "no";
wantedBy = [ "initrd.target" ];
after = [ "zfs-import.target" ];
before = [ "sysroot.mount" ];
script = "zfs rollback -r zroot@blank";
};
# }}}
}