labs/tidepool/src/export.nix

20 lines
328 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-14 14:01:18 +00:00
};
};
};
}