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;
};
outputs = { self, nixpkgs, openwrt }: {
outputs = { self, nixpkgs, openwrt }@inputs: {
lib.build =
{ pkgs ? nixpkgs.legacyPackages.x86_64-linux
, openwrt ? openwrt
, ...
}@args:
import ./builder.nix (args // {
inherit pkgs openwrt;
inherit pkgs;
});
lib.profiles =