labs/potluck/src/export.nix
2024-06-12 22:00:03 -07:00

15 lines
231 B
Nix

# This file handles creating all of the exports for this project and is not
# exported itself.
{
lib,
config,
}: let
in {
config = {
exports = {
lib = config.lib;
modules = import ./modules.nix;
};
};
}