mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2025-04-26 03:45:21 -04:00
add ssh stuff
This commit is contained in:
parent
c07b995d2c
commit
d508c844b8
@ -8,6 +8,7 @@ echo "👋 Deep breaths, everything will (probably) be fine!"
|
|||||||
ln -sf "$HOME"/.dotfiles/zsh/.zshrc "$HOME"/.zshrc
|
ln -sf "$HOME"/.dotfiles/zsh/.zshrc "$HOME"/.zshrc
|
||||||
ln -sf "$HOME"/.dotfiles/git/.gitconfig "$HOME"/.gitconfig
|
ln -sf "$HOME"/.dotfiles/git/.gitconfig "$HOME"/.gitconfig
|
||||||
ln -sf "$HOME"/.dotfiles/git/.gitignore_global "$HOME"/.gitignore_global
|
ln -sf "$HOME"/.dotfiles/git/.gitignore_global "$HOME"/.gitignore_global
|
||||||
|
ln -sf "$HOME"/.dotfiles/ssh/.ssh/config "$HOME"/.ssh/config
|
||||||
|
|
||||||
# Get Oh My ZSH up and running
|
# Get Oh My ZSH up and running
|
||||||
if [ ! -e ~/.oh-my-zsh ]; then
|
if [ ! -e ~/.oh-my-zsh ]; then
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
# https://github.com/paulirish/dotfiles/blob/master/.osx
|
# https://github.com/paulirish/dotfiles/blob/master/.osx
|
||||||
# https://github.com/kevinSuttle/macOS-Defaults/blob/master/.macos
|
# https://github.com/kevinSuttle/macOS-Defaults/blob/master/.macos
|
||||||
|
|
||||||
set -e
|
# Change new hostname here if necessary
|
||||||
|
|
||||||
COMPUTER_NAME="JJ-MBP15"
|
COMPUTER_NAME="JJ-MBP15"
|
||||||
|
|
||||||
|
# Quit System Preferences.app if open
|
||||||
osascript -e 'tell application "System Preferences" to quit'
|
osascript -e 'tell application "System Preferences" to quit'
|
||||||
|
|
||||||
# Ask for the administrator password upfront
|
# Ask for the administrator password upfront
|
||||||
@ -79,9 +79,9 @@ defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
|
|||||||
# Disable press-and-hold for keys in favor of key repeat
|
# Disable press-and-hold for keys in favor of key repeat
|
||||||
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
|
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
|
||||||
|
|
||||||
# Set a blazingly fast keyboard repeat rate
|
# Set a faster keyboard repeat rate (but not too fast, thanks butterfly keyboard)
|
||||||
defaults write NSGlobalDomain KeyRepeat -int 1
|
defaults write NSGlobalDomain KeyRepeat -int 5
|
||||||
defaults write NSGlobalDomain InitialKeyRepeat -int 15
|
defaults write NSGlobalDomain InitialKeyRepeat -int 25
|
||||||
|
|
||||||
# Automatically illuminate built-in MacBook keyboard in low light
|
# Automatically illuminate built-in MacBook keyboard in low light
|
||||||
defaults write com.apple.BezelServices kDim -bool true
|
defaults write com.apple.BezelServices kDim -bool true
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -e
|
# This shouldn't be run if not on macOS, but make double sure
|
||||||
|
|
||||||
if test ! "$(uname)" = "Darwin"; then
|
if test ! "$(uname)" = "Darwin"; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
66
ssh/.ssh/config
Normal file
66
ssh/.ssh/config
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
Include conf.d/*
|
||||||
|
|
||||||
|
CanonicalizeHostname yes
|
||||||
|
CanonicalizeMaxDots 0
|
||||||
|
|
||||||
|
Host *
|
||||||
|
# https://stribika.github.io/2015/01/04/secure-secure-shell.html
|
||||||
|
ChallengeResponseAuthentication no
|
||||||
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes256-ctr
|
||||||
|
ControlMaster auto
|
||||||
|
ControlPath /tmp/ssh-%r@%h:%p
|
||||||
|
ControlPersist 5m
|
||||||
|
ForwardAgent yes
|
||||||
|
ForwardX11 no
|
||||||
|
GSSAPIAuthentication yes
|
||||||
|
GSSAPIDelegateCredentials yes
|
||||||
|
HashKnownHosts yes
|
||||||
|
HostKeyAlgorithms ssh-ed25519-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ssh-ed25519,ssh-rsa
|
||||||
|
KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256
|
||||||
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
|
||||||
|
PasswordAuthentication no
|
||||||
|
PubkeyAuthentication yes
|
||||||
|
SendEnv LANG
|
||||||
|
ServerAliveCountMax 3
|
||||||
|
ServerAliveInterval 120
|
||||||
|
VisualHostKey yes
|
||||||
|
VerifyHostKeyDNS ask
|
||||||
|
# macOS specific
|
||||||
|
IgnoreUnknown AddKeysToAgent,UseKeychain
|
||||||
|
AddKeysToAgent yes
|
||||||
|
UseKeychain yes
|
||||||
|
IdentityFile ~/.ssh/id_ed25519
|
||||||
|
IdentityFile ~/.ssh/id_rsa
|
||||||
|
|
||||||
|
Host tufts
|
||||||
|
HostName linux.eecs.tufts.edu
|
||||||
|
User jjarvi01
|
||||||
|
IdentityFile ~/.ssh/id_ed25519
|
||||||
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
Host code
|
||||||
|
HostName code.jarv.is
|
||||||
|
User jake
|
||||||
|
IdentityFile ~/.ssh/id_ed25519
|
||||||
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
Host github.com
|
||||||
|
HostName github.com
|
||||||
|
User git
|
||||||
|
IdentityFile ~/.ssh/id_ed25519
|
||||||
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
Host kali
|
||||||
|
HostName 50.116.62.61
|
||||||
|
User root
|
||||||
|
IdentityFile ~/.ssh/id_rsa
|
||||||
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
Host hashbang
|
||||||
|
HostName de1.hashbang.sh
|
||||||
|
User jakej
|
||||||
|
IdentityFile ~/.ssh/id_rsa
|
||||||
|
IdentitiesOnly yes
|
||||||
|
|
||||||
|
Host *.ssh.wpengine.net
|
||||||
|
IdentityFile ~/.ssh/wpe_devkit
|
1
ssh/.ssh/id_ed25519.pub
Normal file
1
ssh/.ssh/id_ed25519.pub
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHeuNlSZmqygM4XN7++pmfrNUsFzAjlxaYHoO/JXVdT5 jake@jarv.is
|
1
ssh/.ssh/id_rsa.pub
Normal file
1
ssh/.ssh/id_rsa.pub
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCYZ5gJTqUnJkkcZ2UQFRpQ8bAjhf//MN+wjT177ByUHz1wcvw3mRrI3PDE9HCpbBlrqSZ46Y2lKktnTJ2Gl8f1XHbBYN2UbeLscprxeFZ/0M508LoJSjTs2Ao8B0x0VH9KxnKKDWzz2BrrkJ670ZWeV5D4WHaIrk/zvbnUeUnkQIJ303FQlHFXwk2/IgkscSM80W/qssW3nQAf+FgHhBc1nbFIP6y/Xz21pKQ3+Uh6eZcUGs4a9Rw/EfB3z41qB83BZKU2BxSTdet4xlEO0xfHRe5q7LLc3VsGcIwhHTZTtAW24UJvgNp5fqCQeJPlkhDy6F/WOag+EXsQq7R7MOEp jakejarvis@gmail.com
|
@ -5,8 +5,9 @@ export DOTFILES=$HOME/.dotfiles
|
|||||||
export ZSH=$HOME/.oh-my-zsh
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
# Default to nano 'cause I'm a wimp
|
# Default to nano 'cause I'm a wimp
|
||||||
export VISUAL="nano"
|
|
||||||
export EDITOR="nano"
|
export EDITOR="nano"
|
||||||
|
export VISUAL="code"
|
||||||
|
export BROWSER="firefox"
|
||||||
|
|
||||||
# Adjust history for speed
|
# Adjust history for speed
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
|
Loading…
x
Reference in New Issue
Block a user