dotfiles/nixos/systems/altra/grub.nix

20 lines
229 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;
};
}