add base-efi-grub.nix template

This commit is contained in:
Daniel Langbein 2024-11-26 10:09:02 +01:00
parent a6f14f1dd9
commit c59321cef3
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

14
modules/base-efi-grub.nix Normal file
View File

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