nix-git/modules/base-efi-grub.nix

15 lines
218 B
Nix

# This has not yet been tested.
{ config, pkgs, ... }:
{
# Bootloader.
boot.loader = {
grub = {
enable = true;
efiSupport = true;
};
efi = {
canTouchEfiVariables = true;
};
};
}