# This file handles creating all of the exports for this project and is not # exported itself. { lib, config, }: let lib' = config.lib; in { config = { exports = { lib = config.lib; modules = import ./modules.nix; packages = { foundation-gcc = config.packages.foundation.gcc; # example-x = config.packages.example.x; # cross-example-x-x86_64-linux = config.packages.cross.x86_64-linux.example.x; }; }; }; }