nixos-config/modules/grub.nix

13 lines
265 B
Nix
Raw Permalink Normal View History

{
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.systemd-boot.enable = false;
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
configurationLimit = 5;
};
}