nixos-config/modules/system/devices/boot/grub/default.nix

11 lines
192 B
Nix

{ config, lib, ... }:
{
boot.loader = {
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
efi.canTouchEfiVariables = false;
};
}