Files
nix-config/modules/nixos/hardware/raspberry-pi/uefi-builder.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

21 lines
289 B
Nix
Executable File

{
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;
};
}