1
Fork 0
satellite/hosts/nixos/lapetus/filesystems/zfs.nix

26 lines
657 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
let secretMountpoint = "/hermes";
in
{
2023-07-18 16:39:38 +02:00
# Configure ZFS
boot.supportedFilesystems = [ "zfs" ];
2023-07-18 16:39:38 +02:00
boot.zfs.extraPools = [ "zroot" ];
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.kernelParams = [ "nohibernate" ];
2024-01-18 08:54:14 +01:00
# {{{ 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";
};
2024-01-18 08:54:14 +01:00
# }}}
2023-07-18 16:39:38 +02:00
}