nixos-config/modules/system/devices/boot/grub/default.nix
2025-03-24 01:08:29 -04:00

11 lines
232 B
Nix

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