From 76aeb23575d51aaf444d03ca9b6620b2b74d17b0 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Mon, 13 Apr 2026 18:07:08 +0200 Subject: [PATCH] Added ssh to own git --- modules/common/ssh.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/common/ssh.nix b/modules/common/ssh.nix index a09f332..a769994 100644 --- a/modules/common/ssh.nix +++ b/modules/common/ssh.nix @@ -5,9 +5,11 @@ startAgent = true; extraConfig = '' Host github.com - IdentityFile ~/.ssh/git + IdentityFile ~/.ssh/git Host git.alexdelcamp.fr - IdentityFile ~/.ssh/git + IdentityFile ~/.ssh/git + Port 2222 + User git ''; }; };