nixos-config/machine/pc-installer/grub.nix

16 lines
318 B
Nix
Raw Normal View History

2024-11-05 08:11:22 +00:00
{
lib,
...
2024-11-09 14:02:26 +00:00
}:
{
2024-11-05 08:11:22 +00:00
# For legacy pc reason, this needs to be grub
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.loader.grub = {
enable = true;
efiInstallAsRemovable = true;
efiSupport = true;
memtest86.enable = true;
};
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
}