diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-07 22:12:02 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-02-07 22:12:02 +0100 |
commit | 143fe4f8171a1d1eb0d675c3f9fde4a9033dedd0 (patch) | |
tree | 03fc917732be55d5b0d588376334ed381750ec89 /home-configuration.scm | |
parent | 9f5734302348e6cb84e00a896f1179b29fa530b7 (diff) |
Integrate the SSH configuration file
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 2d13f2d..ab9048d 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -132,7 +132,14 @@ (description "Custom version of ORG-FC.") (default-value #f))) (simple-service 'ssh-configuration* home-files-service-type - `((".ssh/config" ,(local-file "ssh.config")))) + `((".ssh/config" ,(plain-file "ssh-config" "\ + Host *.onion + ProxyCommand nc -x localhost:9050 -X5 %h %p + + Host kynio.onion + User kynio + Hostname prnpi5oblk35gzcihbgu3227xvanisouxgbejri57bnzjawcksq4l7yd.onion + Port 22\n")))) (service (service-type (name 'trezor-user-packages) |