Skip to content

Commit

Permalink
Remove 'Host *'
Browse files Browse the repository at this point in the history
This is not necessary, the options it specifies can work without
specifying a host.
  • Loading branch information
xorcare committed Sep 8, 2024
1 parent 012714c commit 636e69c
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions home/.ssh/config
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,17 @@ ServerAliveCountMax 3
# Default is 1
ConnectionAttempts 3

# Global settings for all hosts
Host *
# Forwards environment variables LANG and LC_*
# Default is not set
SendEnv LANG LC_*
# Forwards environment variables LANG and LC_*
# Default is not set
SendEnv LANG LC_*

# Uses the macOS keychain to store SSH keys
# Default is "no"
UseKeychain yes
# Uses the macOS keychain to store SSH keys
# Default is "no"
UseKeychain yes

# Adds private keys to the SSH agent
# Default is "no"
AddKeysToAgent yes
# Adds private keys to the SSH agent
# Default is "no"
AddKeysToAgent yes

# This is necessary to divide the ssh configuration into separate files, which
# will allow you to separate the parameters that are fixed in the dotfiles
Expand Down

0 comments on commit 636e69c

Please sign in to comment.