Add public ssh keys ...
... to allow other people to give me access to their systems
This commit is contained in:
parent
8f7cef086b
commit
7025c8442d
3 changed files with 19 additions and 0 deletions
|
|
@ -108,6 +108,11 @@ _git config --local status.showUntrackedFiles no
|
||||||
_git remote set-url origin "$DOTFILES_SSH"
|
_git remote set-url origin "$DOTFILES_SSH"
|
||||||
|
|
||||||
|
|
||||||
|
# Because `git` can only track the executable flag
|
||||||
|
chmod 700 "$HOME/.ssh"
|
||||||
|
chmod 600 "$HOME/.ssh/authorized_keys"
|
||||||
|
|
||||||
|
|
||||||
if command -v batcat >/dev/null 2>&1 && ! command -v bat >/dev/null 2>&1; then
|
if command -v batcat >/dev/null 2>&1 && ! command -v bat >/dev/null 2>&1; then
|
||||||
ln -sf "$(command -v batcat)" "$XDG_BIN_HOME/bat"
|
ln -sf "$(command -v batcat)" "$XDG_BIN_HOME/bat"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
5
.ssh/authorized_keys
Normal file
5
.ssh/authorized_keys
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOhhfx063dGoaE62cbdyGL3kp1AIovWFojQGNdqUpxr8 laplace
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMRDaWrT2hH7BOV4Zv1ctVGqwfeqkssnHklRXBmng6Wr lazarus
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN0GVKtgpgzpdf7E6e2vCytDSa2zPSgZ+8fAKCOotugH peter
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDq2JDk3pX79p7ampZhVQxIZg4qaUBkTPIQSbK0XeKoc wilddog
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGGNCrFt/gUbBHVqhthBuRmdDH6yS30+GGcCnARSzg+q wolfram
|
||||||
|
|
@ -18,6 +18,15 @@ It targets [Debian](https://www.debian.org/) 13
|
||||||
be it end-user software or common development utilities.
|
be it end-user software or common development utilities.
|
||||||
|
|
||||||
|
|
||||||
|
## SSH Keys
|
||||||
|
|
||||||
|
If I told you to go here and copy/paste my public `ssh` keys
|
||||||
|
to give me access to one of your servers,
|
||||||
|
find them
|
||||||
|
either [here](.ssh/authorized_keys)
|
||||||
|
or [here](https://code.webartifex.de/alexander.keys).
|
||||||
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Simply run:
|
Simply run:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue