refactor(restructure): update Nix files for hermes_agent package

Update import paths in nix/checks.nix smoke tests from
hermes_cli.config to hermes_agent.cli.config.

Part of #14182, #14183
This commit is contained in:
alt-glitch 2026-04-23 12:14:24 +05:30
parent 76aebd73c3
commit ff99611e16

View file

@ -19,7 +19,7 @@
export HOME=$TMPDIR
${hermesVenv}/bin/python3 -c '
import json, sys
from hermes_cli.config import DEFAULT_CONFIG
from hermes_agent.cli.config import DEFAULT_CONFIG
def leaf_paths(d, prefix=""):
paths = []
@ -269,7 +269,7 @@ json.dump(sorted(leaf_paths(DEFAULT_CONFIG)), sys.stdout, indent=2)
${configMergeScript} ${nixSettings} "$hermes_home/config.yaml"
${hermesVenv}/bin/python3 -c '
import json, sys
from hermes_cli.config import load_config
from hermes_agent.cli.config import load_config
json.dump(load_config(), sys.stdout, default=str)
'
}