2026-04-13 18:07:08 +02:00

17 lines
286 B
Nix

{
# The OpenSSH agent
programs = {
ssh = {
startAgent = true;
extraConfig = ''
Host github.com
IdentityFile ~/.ssh/git
Host git.alexdelcamp.fr
IdentityFile ~/.ssh/git
Port 2222
User git
'';
};
};
}