8 lines
175 B
Nix
8 lines
175 B
Nix
{ config, pkgs, name, ... }:
|
|
{
|
|
boot.loader.limine = {
|
|
biosSupport = !pkgs.stdenv.hostPlatform.isAarch64;
|
|
efiInstallAsRemovable = true;
|
|
efiSupport = true;
|
|
};
|
|
}
|