12 lines
293 B
Org Mode
12 lines
293 B
Org Mode
#+title: SSH Configuration
|
|
Keys should be added to the SSH agent.
|
|
#+begin_src conf :tangle ~/.ssh/config :mkdirp yes
|
|
Host *
|
|
UseKeychain yes
|
|
AddKeysToAgent yes
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
|
|
Host aviary
|
|
HostName aviary.cs.umanitoba.ca
|
|
User janzenj2
|
|
#+end_src
|