dotfiles/nixos/systems/altra/grub.nix

16 lines
214 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
let
inherit (lib)
singleton;
in
{
boot.loader.efi = {
canTouchEfiVariables = true;
};
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
}