nixos-config/modules/system/devices/boot/limine/default.nix

8 lines
175 B
Nix

{ config, pkgs, name, ... }:
{
boot.loader.limine = {
biosSupport = !pkgs.stdenv.hostPlatform.isAarch64;
efiInstallAsRemovable = true;
efiSupport = true;
};
}