We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19630aa + d979b45 commit aa79f54Copy full SHA for aa79f54
nixos/modules/installer/cd-dvd/iso-image.nix
@@ -772,9 +772,10 @@ in
772
# here and it causes a cyclic dependency.
773
boot.loader.grub.enable = false;
774
775
- environment.systemPackages = [ grubPkgs.grub2 grubPkgs.grub2_efi ]
+ environment.systemPackages = [ grubPkgs.grub2 ]
776
++ lib.optional (config.isoImage.makeBiosBootable) pkgs.syslinux
777
;
778
+ system.extraDependencies = [ grubPkgs.grub2_efi ];
779
780
# In stage 1 of the boot, mount the CD as the root FS by label so
781
# that we don't need to know its device. We pass the label of the
0 commit comments