nixos-generators/formats/kexec-bundle.nix
Vladimir Pouzanov 13ff43edfb Fix the extension breaking the find query.
In af3d3a7538, filename was renamed to fileExtension and used in find -name. This breaks kexec as it used to have the actual file name glob in there.

Given it's the only file produced it seems safe to just remove the path component.
2024-02-08 11:16:16 +00:00

7 lines
134 B
Nix

{lib, ...}: {
imports = [./kexec.nix];
formatAttr = lib.mkForce "kexec_bundle";
fileExtension = lib.mkForce "-kexec_bundle";
}