Files
nix-config/modules/nixos/hardware/raspberry-pi/uefi-builder.nix
mjallen18 56154fe941 check
2026-01-02 20:30:05 -06:00

21 lines
289 B
Nix

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