nix-git/modules/base-bios.nix

11 lines
222 B
Nix
Raw Normal View History

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