pub-solar-os/lib/pkgs-lib/default.nix
2021-04-18 22:40:53 -05:00

10 lines
248 B
Nix

{ lib, nixpkgs, deploy, devshell }:
lib.genAttrs
lib.defaultSystems (system:
{
tests = import ./tests { inherit lib deploy nixpkgs pkgs system; };
shell = import ./shell { inherit lib devshell deploy nixpkgs system; };
}
)