11 lines
214 B
Nix
11 lines
214 B
Nix
|
{ lib
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
boot.loader.grub.efiSupport = true;
|
||
|
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
|
||
|
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
|
||
|
boot.extraModulePackages = [ ];
|
||
|
}
|