labs/tidepool/src/export.nix

21 lines
413 B
Nix
Raw Normal View History

# This file handles creating all of the exports for this project and is not
# exported itself.
{
lib,
config,
}: let
2024-06-14 14:01:18 +00:00
lib' = config.lib;
in {
config = {
exports = {
2024-06-13 05:00:03 +00:00
lib = config.lib;
modules = import ./modules.nix;
2024-06-14 14:01:18 +00:00
packages = {
example-x = config.packages.example.x;
2024-06-15 10:58:25 +00:00
cross-example-x-x86_64-linux = config.packages.cross.x86_64-linux.example.x;
2024-06-14 14:01:18 +00:00
};
};
};
}