nix-bitcoin/default.nix
Erik Arvstedt 7e021a2629
simplify overlay.nix
Move pkg definitions to pkgs/default.nix.
This allows us to just import the pkgs in overlay.nix and get rid of
the filtering to exclude the modules.
2020-01-09 10:43:29 +01:00

6 lines
104 B
Nix

{ pkgs ? import <nixpkgs> {} }:
(import ./pkgs { inherit pkgs; }) // {
modules = import ./modules;
}