Files
status-react/nix/default.nix
T

13 lines
265 B
Nix
Raw Normal View History

2020-01-08 15:41:07 +01:00
{
2019-11-29 11:20:08 +01:00
config ? {},
pkgs ? import ./pkgs.nix { inherit config; }
}:
let
# put all main targets and shells together for easy import
shells = pkgs.callPackage ./shells.nix { };
targets = pkgs.callPackage ./targets.nix { };
in {
inherit pkgs targets shells;
}