mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-10 14:28:56 +03:00
7e021a2629
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.
6 lines
104 B
Nix
6 lines
104 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
(import ./pkgs { inherit pkgs; }) // {
|
|
modules = import ./modules;
|
|
}
|