nix-git/modules/base-bios.nix

11 lines
222 B
Nix

{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.grub = {
# This has to be filled out in config.nix:
# devices = [ "/dev/disk/by-uuid/..." ];
efiSupport = true;
efiInstallAsRemovable = true;
};
}