uefi testing

This commit is contained in:
mjallen18
2026-01-01 19:15:41 -06:00
parent c4ea874ae7
commit 3063d6b161
5 changed files with 163 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
{ pkgs
, uefiPackage
, firmwareBuilder
}:
pkgs.replaceVarsWith {
src = ./uefi-builder.sh;
isExecutable = true;
replacements = {
inherit (pkgs) bash;
path = pkgs.lib.makeBinPath [
pkgs.coreutils
];
uefi = uefiPackage;
inherit firmwareBuilder;
};
}