Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.
Stop Nim's signal handler from crashing on libcosmic's threads
The gallery segfaulted with a stack of signalHandler -> rawNewString ->
rawAlloc on a thread named "notify-rs inoti". Nim installs its signal
handlers process-wide and they allocate to build a traceback, so a signal
landing on a thread libcosmic created — a tokio worker, or the inotify
watcher — faults inside the handler, and the resulting core points at the
allocator rather than at whatever actually happened.
Reproduced it with tgkill against that exact thread: default build dies
with SIGSEGV, -d:noSignalHandler takes the default action and exits
cleanly. examples/nim.cfg sets the flag, and the binding warns when a
host forgets it, since this bites any program that loads the library.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>