nixos-config/modules/core/bootloader.nix

15 lines
199 B
Nix

{
pkgs,
lib,
...
}: {
boot.loader = {
grub = {
efiSupport = true;
device = "nodev";
useOSProber = true;
};
efi.canTouchEfiVariables = lib.mkDefault true;
};
}