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

15 lines
218 B
Nix
Raw Normal View History

2024-11-26 10:09:02 +01:00
# This has not yet been tested.
{ config, pkgs, ... }:
{
# Bootloader.
boot.loader = {
grub = {
enable = true;
efiSupport = true;
};
efi = {
canTouchEfiVariables = true;
};
};
}