My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/corenix/modules/tianocore/default.nix

28 lines
560 B

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.tianocore;
payloadName =
if cfg.asSecondaryPayload then "img/tianocore" else "fallback/payload";
in {
options.tianocore = {
enable = mkEnableOption "tianocore coreboot primary payload";
asSecondaryPayload = mkOption {
type = types.bool;
default = false;
};
};
config = lib.mkIf cfg.enable {
corenix.extraFiles = {
${payloadName} = {
type = "payload";
src = "${pkgs.coreboot-payload-tianocore}/FV/UEFIPAYLOAD.fd";
};
};
};
}