forest/common/generic-uefi-zfs.nix
2024-06-28 16:09:05 +01:00

11 lines
223 B
Nix

{ pkgs, ... }: {
boot.loader.grub = {
enable = true;
zfsSupport = true;
efiSupport = true;
efiInstallAsRemovable = true;
mirroredBoots = [
{ devices = [ "nodev"]; path = "/boot"; }
];
};
}