NixOS/system/modules/boot_loader.nix

16 lines
276 B
Nix
Raw Normal View History

2024-06-12 09:54:11 +07:00
{ ... }:
{
boot.loader = {
efi = {
efiSysMountPoint = "/boot";
canTouchEfiVariables = true;
};
grub = {
enable = true;
efiSupport = true;
useOSProber = true;
device = "nodev"; # used nodev because of efi support
};
};
}