infra/nix/os/devices/router-wan-host.home-ch.stefanjunker.de/boot.nix

11 lines
214 B
Nix
Raw Normal View History

2021-01-11 11:56:32 +01:00
{ lib
, ...
}:
{
boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.extraModulePackages = [ ];
}