aboutsummaryrefslogtreecommitdiff
path: root/modules/tint/default.nix
blob: df0ed6851a2a15cb8636005d22947716ee684333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
      };
    };
  };
}