Files
nix-config/modules/nixos/hardware/raspberry-pi/firmware-builder.nix
mjallen18 b216fe5215 bruh
2025-12-30 14:28:48 -06:00

18 lines
278 B
Nix

{ pkgs
, configTxt
, firmware ? pkgs.raspberrypifw
}:
pkgs.replaceVarsWith {
src = ./firmware-builder.sh;
isExecutable = true;
replacements = {
inherit (pkgs) bash;
path = pkgs.lib.makeBinPath [
pkgs.coreutils
];
inherit firmware configTxt;
};
}