From be941d0806959fcaf2c77c8bf36f7b9d474b4493 Mon Sep 17 00:00:00 2001 From: Ethan Simmons Date: Wed, 29 May 2024 16:42:35 -0500 Subject: [PATCH] Fix gitea ssh --- hosts/ankaa/dotfiles/ssh/config | 8 ++------ hosts/ankaa/home.nix | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/hosts/ankaa/dotfiles/ssh/config b/hosts/ankaa/dotfiles/ssh/config index da090cf..fec2be9 100644 --- a/hosts/ankaa/dotfiles/ssh/config +++ b/hosts/ankaa/dotfiles/ssh/config @@ -1,6 +1,2 @@ -Host gitea - HostName git.simmer505.com - User git - Port 222 - IdentityFile ~/.ssh/id_ed25519 - IdentitiesOnly yes +Host git.simmer505.com +Port 222 diff --git a/hosts/ankaa/home.nix b/hosts/ankaa/home.nix index ee76d3c..9b006fc 100644 --- a/hosts/ankaa/home.nix +++ b/hosts/ankaa/home.nix @@ -17,7 +17,7 @@ home.file.".config/waybar".source = ./dotfiles/waybar; home.file.".config/fish/config.fish".source = ./dotfiles/fish/config.fish; home.file.".config/alacritty/alacritty.toml".source = ./dotfiles/alacritty/alacritty.toml; - home.file.".config/ssh/config".source = ./dotfiles/ssh/config; + home.file.".ssh/config".source = ./dotfiles/ssh/config; # Fix for slow steam download speeds https://old.reddit.com/r/linux_gaming/comments/16e1l4h/slow_steam_downloads_try_this/ home.file.".steam/steam/steam_dev.cfg".source = ./dotfiles/steam/steam_dev.cfg;