12 lines
419 B
Nix
12 lines
419 B
Nix
|
|
# 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; };
|
||
|
|
}
|