8a47f2f3b4
dssh reaches host-LAN peers from inside the devbox container because it runs `ssh -F ~/.ssh-local/config` (which Includes the host-owned, bind-mounted ssh-lan.conf carrying `ProxyJump host` entries). pi --ssh shelled out to plain `ssh`/`ssh -G` against the default ~/.ssh/config, which has no jump, so it could not reach peers the host can. Thread `-F <config>` through every ssh call (ssh -G, pwd probe, master start for both key and password paths, sshExec, bash exec, ssh -O exit), resolved once at load by resolveSshConfigOpts(): PI_SSH_CONFIG (leading ~ expanded, honored even if missing) else ~/.ssh-local/config if present else [] (no -F) No hostnames are baked into the image — the LAN list lives only in the host-owned, read-only-mounted ~/.config/devbox-shell/ssh-lan.conf. On the host (native pi) ~/.ssh-local/config doesn't exist, so -F is omitted and behavior is unchanged. Command-line -o options still win over -F, so own-master /tmp socket and ControlMaster decisions are unaffected. Status/notify shows [config: <path>] when a non-default config is used. Verified from the container: the patched probe reaches an enrolled peer (pve -> /root) where plain ssh times out. Reaching a new peer (e.g. alpserv-2) is now a one-line host-side edit to ssh-lan.conf. Docs: README + AGENTS.md updated.