From 983dc33deec1806bfbec2bbd5ba6c4c5888f9a06 Mon Sep 17 00:00:00 2001 From: osbm Date: Sun, 30 Jun 2024 20:13:31 +0300 Subject: [PATCH] try out shared ssh config file --- Makefile | 3 ++- src/.ssh/config | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/.ssh/config diff --git a/Makefile b/Makefile index 9ed07a9..ea28ead 100644 --- a/Makefile +++ b/Makefile @@ -6,13 +6,14 @@ clone: git clone https://github.com/osbm/wallpapers.git ~/Pictures/wallpapers install-programs-pacman: - sudo pacman -S tmux alacritty trash-cli git git-lfs spectacle unzip docker docker-compose pyenv + sudo pacman -S tmux alacritty trash-cli git git-lfs spectacle unzip docker docker-compose pyenv libreoffice-still obsidian link: ln -sf /home/osbm/Documents/dotfiles/src/.gitconfig ~/.gitconfig ln -sf /home/osbm/Documents/dotfiles/src/.config/alacritty/ ~/.config/alacritty ln -sf /home/osbm/Documents/dotfiles/src/.config/fish/ ~/.config/fish ln -sf /home/osbm/Documents/dotfiles/src/.config/tmux ~/.config/tmux + ln -sf /home/osbm/Documents/dotfiles/src/.ssh/config ~/.ssh/config install-tpm: git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm diff --git a/src/.ssh/config b/src/.ssh/config new file mode 100644 index 0000000..7750343 --- /dev/null +++ b/src/.ssh/config @@ -0,0 +1,14 @@ +Host harmonica + Hostname 192.168.1.16 + User osbm + IdentityFile ~/.ssh/harmonica + +Host ymir + Hostname 192.168.1.17 + User osbm + IdentityFile ~/.ssh/ymir + +Host tartarus + Hostname 192.168.1.13 + User osbm + IdentityFile ~/.ssh/tartarus