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

17 lines
336 B

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