nixos-config/modules/system/devices/boot/grub/efi/default.nix
2024-10-19 19:59:55 -04:00

10 lines
139 B
Nix

{ ... }:
{
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
}