flake.nix: update nixpkgs for packages output

The custom Firefox addons is not exported anyways so we don't need to
import with the overlays.
This commit is contained in:
Gabriel Arazas 2023-08-03 18:11:34 +08:00
parent 7c348b1287
commit b30eb78170
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -392,14 +392,7 @@
# "x86_64-linux". I just want to try out supporting other systems. # "x86_64-linux". I just want to try out supporting other systems.
packages = forAllSystems (system: packages = forAllSystems (system:
inputs.flake-utils.lib.flattenTree (import ./pkgs { inputs.flake-utils.lib.flattenTree (import ./pkgs {
pkgs = import nixpkgs { pkgs = import nixpkgs { inherit system; };
inherit system;
overlays = [
(final: prev: {
inherit (inputs.firefox-addons.lib.${system}) buildFirefoxXpiAddon;
})
];
};
})); }));
# This contains images that are meant to be built and distributed # This contains images that are meant to be built and distributed