From b30eb781704c579bdfbc2638d2fdcf9031004284 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 3 Aug 2023 18:11:34 +0800 Subject: [PATCH] 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. --- flake.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 793f11de..739dc4fb 100644 --- a/flake.nix +++ b/flake.nix @@ -392,14 +392,7 @@ # "x86_64-linux". I just want to try out supporting other systems. packages = forAllSystems (system: inputs.flake-utils.lib.flattenTree (import ./pkgs { - pkgs = import nixpkgs { - inherit system; - overlays = [ - (final: prev: { - inherit (inputs.firefox-addons.lib.${system}) buildFirefoxXpiAddon; - }) - ]; - }; + pkgs = import nixpkgs { inherit system; }; })); # This contains images that are meant to be built and distributed