dotfiles/nixos/systems/heater/grub.nix

15 lines
253 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
boot.loader = {
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/EFI";
grub = {
enable = true;
efiSupport = true;
devices = [ "nodev" ];
};
};
}