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/nvramcui/default.nix

19 lines
366 B

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.nvramcui;
in {
options.nvramcui = {
enable = mkEnableOption "nvramcui coreboot secondary payload";
};
config = lib.mkIf cfg.enable {
corenix.extraFiles = {
"img/nvramcui" = {
type = "payload";
src = "${pkgs.coreboot-payload-nvramcui}/nvramcui.elf";
};
};
};
}