commit f2222d8a581427d2fc20f21007031ea1eb6a193e Author: Greg Hendrickson Date: Tue Jan 27 15:40:58 2026 +0000 Initial keys diff --git a/README.md b/README.md new file mode 100644 index 0000000..8fa5c29 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# 🔑 Public Keys + +SSH public keys for cross-machine access. + +## Usage + +```bash +# Add all keys to authorized_keys +curl -sL https://github.com/ghndrx/pubkeys/raw/main/all.pub >> ~/.ssh/authorized_keys + +# Or specific machine +curl -sL https://github.com/ghndrx/pubkeys/raw/main/keys/dell01.pub >> ~/.ssh/authorized_keys +``` + +## Keys + +| Machine | Type | File | +|---------|------|------| +| dell01 | ed25519 | [keys/dell01.pub](keys/dell01.pub) | + +## Quick Install Script + +```bash +#!/bin/bash +# Install Greg's keys +mkdir -p ~/.ssh && chmod 700 ~/.ssh +curl -sL https://github.com/ghndrx/pubkeys/raw/main/all.pub >> ~/.ssh/authorized_keys +chmod 600 ~/.ssh/authorized_keys +echo "✓ Keys installed" +``` diff --git a/all.pub b/all.pub new file mode 100644 index 0000000..4fe2a40 --- /dev/null +++ b/all.pub @@ -0,0 +1,2 @@ +# All public keys +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIENzm1YuFih+g2wHfME9JAU7J6asMJ4kiudetHNfAHI2 dell01 diff --git a/keys/dell01.pub b/keys/dell01.pub new file mode 100644 index 0000000..9ac4032 --- /dev/null +++ b/keys/dell01.pub @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIENzm1YuFih+g2wHfME9JAU7J6asMJ4kiudetHNfAHI2 dell01