forked from mirrors/nixpkgs
grub module: removed invalid device check for grub EFI installation
This commit is contained in:
parent
4cdb4a4fef
commit
60da99ea2a
|
@ -21,7 +21,7 @@ let
|
|||
|
||||
grubEfi =
|
||||
# EFI version of Grub v2
|
||||
if (cfg.devices != ["nodev"]) && cfg.efiSupport && (cfg.version == 2)
|
||||
if cfg.efiSupport && (cfg.version == 2)
|
||||
then realGrub.override { efiSupport = cfg.efiSupport; }
|
||||
else null;
|
||||
|
||||
|
|
Loading…
Reference in a new issue