diff --git a/default.nix b/default.nix --- a/default.nix +++ b/default.nix @@ -15,15 +15,13 @@ let pkgs_ = (import {}); in let - # TODO: Currently we ignore the passed in pkgs, instead we should use it - # somehow as a base and apply overlays to it. - pkgs = import { + pkgs = args.pkgs or (import { overlays = [ (import ./pkgs/overlays.nix) ]; inherit (pkgs_) system; - }; + }); # Works with the new python-packages, still can fallback to the old # variant. diff --git a/shell.nix b/shell.nix --- a/shell.nix +++ b/shell.nix @@ -10,7 +10,6 @@ let vcsserver = import ./default.nix { inherit - pkgs doCheck; };