pub fn ssh_config_path() -> Option<PathBuf>
Returns the path to the user’s SSH config file.
~/.ssh/config
%USERPROFILE%\.ssh\config
Uses the dirs crate so we never hardcode ~.
dirs
~