nixos-config/modules/system/boot/default.nix
2024-07-11 14:51:17 +09:00

16 lines
287 B
Nix

{ ... }:
{
# Bootloader.
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
efiSupport = true;
device = "nodev";
useOSProber = true;
};
};
}