Files
m3ta-home/lib/default.nix
T

17 lines
536 B
Nix
Raw Normal View History

2026-05-02 09:08:40 +02:00
# lib/default.nix — Entry point for m3ta-home library functions.
#
# Called by flake.nix: import ./lib { inherit inputs; selfPath = self.outPath; }
2026-06-13 09:25:40 +02:00
# Re-exports mkHome and focused helpers for consumers that should not depend on
# m3ta-home's implementation inputs directly.
{
inputs,
selfPath,
}: let
mkHomeLib = import ./mkHome.nix {inherit inputs selfPath;};
in
mkHomeLib
// {
mkHermesSkillsDir = {system, ...} @ args:
inputs.agent-lib.lib.${system}.mkHermesSkillsDir (builtins.removeAttrs args ["system"]);
}