summaryrefslogtreecommitdiff
path: root/ext/openwrt/default.nix
blob: 16f0fb9f02dd2bb7783531dc87b02d82cc0b5b61 (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 ./systems/turret {
        inherit (inputs) openwrt-imagebuilder;
      };
    };
  });
}