fix: remove double-lambda in mkHome (was rejecting 'sets' argument)

This commit is contained in:
2026-05-02 09:56:45 +02:00
parent 0a03af7174
commit 17b7485e3a
2 changed files with 28 additions and 34 deletions

View File

@@ -1,11 +1,5 @@
# 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; };
}
# Called by flake.nix: import ./lib { inherit inputs; }
# Re-exports mkHome and future library functions.
{inputs}: import ./mkHome.nix {inherit inputs;}