forest/common/generic-uefi-zfs.nix

12 lines
223 B
Nix
Raw Normal View History

2024-06-28 15:09:05 +00:00
{ pkgs, ... }: {
boot.loader.grub = {
enable = true;
zfsSupport = true;
efiSupport = true;
efiInstallAsRemovable = true;
mirroredBoots = [
{ devices = [ "nodev"]; path = "/boot"; }
];
};
}