mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
15 lines
243 B
Nix
15 lines
243 B
Nix
{
|
|
# The OpenSSH agent
|
|
programs = {
|
|
ssh = {
|
|
startAgent = true;
|
|
extraConfig = ''
|
|
Host github.com
|
|
IdentityFile ~/.ssh/git
|
|
Host git.alexdelcamp.fr
|
|
IdentityFile ~/.ssh/git
|
|
'';
|
|
};
|
|
};
|
|
}
|