Add ssh config

This commit is contained in:
2024-05-29 16:20:28 -05:00
parent 8384dcda6a
commit 46c7d66d8e
3 changed files with 14 additions and 6 deletions

View File

@@ -1,6 +1,4 @@
[core]
sshCommand = "ssh -i ~/.ssh/id_ed25519"
core.sshCommand = "ssh -i ~/.ssh/id_ed25519"
[user]
email = "eesimmons9105@gmail.com"
name = "Ethan Simmons"
user.email = "eesimmons9105@gmail.com"
user.name = "Ethan Simmons"

View File

@@ -0,0 +1,5 @@
Host gitea
HostName git.simmer505.com
User git
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes

View File

@@ -17,11 +17,16 @@
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/git/config".source = ./dotfiles/git/config;
home.file.".config/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;
programs.git = {
enable = true;
userName = "Ethan Simmons";
userEmail = "eesimmons9105@gmail.com";
};
programs.direnv = {
enable = true;