diff --git a/modules/base-efi-grub.nix b/modules/base-efi-grub.nix new file mode 100644 index 0000000..6e45fc2 --- /dev/null +++ b/modules/base-efi-grub.nix @@ -0,0 +1,14 @@ +# This has not yet been tested. +{ config, pkgs, ... }: +{ + # Bootloader. + boot.loader = { + grub = { + enable = true; + efiSupport = true; + }; + efi = { + canTouchEfiVariables = true; + }; + }; +}