diff options
-rw-r--r-- | misc/dotfiles/ssh/config.j2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/dotfiles/ssh/config.j2 b/misc/dotfiles/ssh/config.j2 index d56f1d0..75f0f81 100644 --- a/misc/dotfiles/ssh/config.j2 +++ b/misc/dotfiles/ssh/config.j2 @@ -1,5 +1,4 @@ Host * - User d {% if ansible_facts['os_family'] == "Darwin" %} # macOS specific settings. UseKeychain yes @@ -8,10 +7,12 @@ Host * Host gate Hostname gate.ilvokhin.com + User d ForwardAgent yes Host sun Hostname sun.ilvokhin.com + User d Host mail Hostname mail.ilvokhin.com @@ -21,9 +22,11 @@ Host mail Host water ProxyJump gate Hostname 10.9.8.2 + User d ForwardAgent yes Host flame ProxyJump gate Hostname 10.9.9.2 + User d ForwardAgent yes |