dotfiles/nixos/modules/grub.nix

16 lines
275 B
Nix
Raw Normal View History

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