flake.nix: remove unused build arg openwrt

This commit is contained in:
Astro 2022-04-29 00:03:27 +02:00
parent 16cbe77aa0
commit 523cb2f511

View File

@ -6,15 +6,14 @@
flake = false; flake = false;
}; };
outputs = { self, nixpkgs, openwrt }: { outputs = { self, nixpkgs, openwrt }@inputs: {
lib.build = lib.build =
{ pkgs ? nixpkgs.legacyPackages.x86_64-linux { pkgs ? nixpkgs.legacyPackages.x86_64-linux
, openwrt ? openwrt
, ... , ...
}@args: }@args:
import ./builder.nix (args // { import ./builder.nix (args // {
inherit pkgs openwrt; inherit pkgs;
}); });
lib.profiles = lib.profiles =