diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 7eaa1c3fbd9..5fa4704d02b 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -326,8 +326,8 @@ let ] ++ optional (bootLoader == "grub" && grubVersion == 1) pkgs.grub ++ optionals (bootLoader == "grub" && grubVersion == 2) [ - pkgs.grub2 - pkgs.grub2_efi + (pkgs.grub2.override { zfsSupport = true; }) + (pkgs.grub2_efi.override { zfsSupport = true; }) ]; nix.binaryCaches = mkForce [ ];