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 ./systems/turret { inherit (inputs) openwrt-imagebuilder; }; }; }); }