dotfiles/nixos/modules/grub.nix
2020-12-26 23:58:39 +01:00

16 lines
275 B
Nix

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