mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 18:24:59 +03:00
13ff43edfb
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.
7 lines
134 B
Nix
7 lines
134 B
Nix
{lib, ...}: {
|
|
imports = [./kexec.nix];
|
|
|
|
formatAttr = lib.mkForce "kexec_bundle";
|
|
fileExtension = lib.mkForce "-kexec_bundle";
|
|
}
|