17 lines
306 B
Nix
17 lines
306 B
Nix
{ ... }:
|
|
{
|
|
## Configure boot loader
|
|
boot.loader = {
|
|
# Use grub without NVRAM
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
device = "nodev";
|
|
efiInstallAsRemovable = true;
|
|
useOSProber = true;
|
|
};
|
|
# Do not edit NVRAM
|
|
efi.canTouchEfiVariables = false;
|
|
};
|
|
}
|