8 lines
188 B
Nix
8 lines
188 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.efiSupport = true;
|
|
boot.loader.grub.device = "nodev";
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
}
|