Merge pull request #139 from blaggacao/fix-1000-nixpkgs

fix: 1000 nixpkgs; compat with numtide/nixpkgs-unfree
This commit is contained in:
Zhaofeng Li 2023-04-22 16:29:36 -06:00 committed by GitHub
commit 089431737e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;