dotfiles/os/boot/default.nix

18 lines
253 B
Nix

{
pkgs,
lib,
config,
...
}:
{
boot.loader = {
grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = !config.boot.loader.efi.canTouchEfiVariables;
device = "nodev"; # Don't install on MBR
};
};
}