From cce22d56b316d6bfef422579c0571dafd4e762e1 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Sat, 11 Mar 2023 14:59:38 -0500 Subject: [PATCH] fix: 1000 nixpkgs; compat with numtide/nixpkgs-unfree --- flake.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 3ccfe15..ace8df6 100644 --- a/flake.nix +++ b/flake.nix @@ -18,10 +18,7 @@ colmenaOptions = import ./src/nix/hive/options.nix; colmenaModules = import ./src/nix/hive/modules.nix; in flake-utils.lib.eachSystem supportedSystems (system: let - pkgs = import nixpkgs { - inherit system; - overlays = []; - }; + pkgs = nixpkgs.legacyPackages.${system}; in rec { # We still maintain the expression in a Nixpkgs-acceptable form defaultPackage = self.packages.${system}.colmena;