16 lines
238 B
Nix
16 lines
238 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
boot.loader = {
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = !config.boot.loader.efi.canTouchEfiVariables;
|
|
device = "nodev"; # Don't install on MBR
|
|
};
|
|
};
|
|
|
|
}
|