Files
m3ta-home/lib/default.nix
T

12 lines
419 B
Nix
Raw Normal View History

2026-05-02 09:08:40 +02:00
# lib/default.nix — Entry point for m3ta-home library functions.
#
# Provides:
# mkHome — compose a complete HM config from user + identity + context + sets
# mkDevShell — create project-level dev shells from language sets
{inputs}: {
mkHome = import ./mkHome.nix {inherit inputs;};
# TODO: mkDevShell for project-level flake devShells
# mkDevShell = import ./mkDevShell.nix { inherit inputs; };
}