Files

11 lines
254 B
Nix
Raw Permalink Normal View History

# for passing build options, see nix/README.md
{ config ? { } }:
2019-11-29 11:20:08 +01:00
let
main = import ./nix { inherit config; };
in {
# this is where the --attr argument selects the shell or target
2019-11-29 11:20:08 +01:00
inherit (main) pkgs targets shells;
inherit (main.pkgs) config;
}