diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-08-13 18:35:40 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-08-13 18:35:40 -0400 |
commit | 10e8396d78d6200416e7b7fe070dcae58d2c6379 (patch) | |
tree | 7e5e80e73db4c11c379f85ca842c6a5ffac6cad8 | |
parent | cb6d43a6ea77ec58fcbc817e3a86698e2b316c37 (diff) |
Add SSH config.
-rw-r--r-- | common-home.scm | 2 | ||||
-rw-r--r-- | dotfiles/.ssh/config | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/common-home.scm b/common-home.scm index e4b979c..e312da3 100644 --- a/common-home.scm +++ b/common-home.scm @@ -36,4 +36,4 @@ ("ls" . "ls -ahlp --color=auto"))))) (simple-service 'dotfiles home-files-service-type - (dotfiles ".emacs.d/init.el" ".guile")))) + (dotfiles ".emacs.d/init.el" ".guile" ".ssh/config")))) diff --git a/dotfiles/.ssh/config b/dotfiles/.ssh/config new file mode 100644 index 0000000..ce3530e --- /dev/null +++ b/dotfiles/.ssh/config @@ -0,0 +1,8 @@ +Host takemi + HostName dthompson.us + User dave + +Host scroll + HostName scroll.spritely.institute + ForwardAgent yes + User dave |