interactive intro to open social at-me.zzstoatzz.io

chore: remove unnecessary openssl dependencies from check workflow

cargo fmt and clippy don't compile dependencies, so they don't need
openssl, pkg-config, or gcc. the PKG_CONFIG_PATH setup wasn't working
anyway (find command not available in nixery containers).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

-5
-5
.tangled/workflows/check.yaml
··· 10 10 - cargo 11 11 - rustfmt 12 12 - clippy 13 - - gcc 14 - - openssl.dev 15 - - pkg-config 16 13 17 14 steps: 18 15 - name: check formatting 19 16 command: | 20 - export PKG_CONFIG_PATH=$(find /nix/store -maxdepth 1 -name "*openssl*-dev" -type d | head -1)/lib/pkgconfig 21 17 cargo fmt --check 22 18 23 19 - name: run clippy 24 20 command: | 25 - export PKG_CONFIG_PATH=$(find /nix/store -maxdepth 1 -name "*openssl*-dev" -type d | head -1)/lib/pkgconfig 26 21 cargo clippy -- -D warnings