blob: dd163df9e0ead1022e95b598046d465b8413124e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
withSystem,
inputs,
...
}: {
flake.legacyPackages.x86_64-linux = withSystem "x86_64-linux" ({pkgs, ...}: {
openWrtImages = {
turret = pkgs.callPackage ./turret {
inherit (inputs) openwrt-imagebuilder;
};
};
});
}
|