Skip to content

Commit

Permalink
Make naersk’s nixpkgs input follow our nixpkgs input
Browse files Browse the repository at this point in the history
This change gets rid of an unnecessary extra instance of Nixpkgs. Having
less instances of Nixpkgs will (hopefully) make things faster.
  • Loading branch information
Jayman2000 committed Dec 19, 2024
1 parent ca7cfb3 commit 2704140
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
20 changes: 4 additions & 16 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};

naersk.url = "https://flakehub.com/f/nix-community/naersk/0.1.*";
naersk = {
url = "https://flakehub.com/f/nix-community/naersk/0.1.*";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = { self, ... }@inputs:
Expand Down

0 comments on commit 2704140

Please sign in to comment.