16 lines
287 B
Nix
16 lines
287 B
Nix
{ ... }:
|
|
|
|
{
|
|
# Bootloader.
|
|
boot.loader = {
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
grub = {
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
useOSProber = true;
|
|
};
|
|
};
|
|
} |