infra/nix/os/devices/srv0.home-ch.stefanjunker.de/boot.nix

12 lines
214 B
Nix
Raw Normal View History

{ lib
, ...
}:
{
boot.loader.grub.efiSupport = true;
2022-10-30 13:48:13 +01:00
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.extraModulePackages = [ ];
}