mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
12 lines
211 B
Nix
12 lines
211 B
Nix
{
|
|
# The OpenSSH agent
|
|
programs.ssh = {
|
|
startAgent = true;
|
|
extraConfig = ''
|
|
# Test if github.com works with ssh for cloning
|
|
Host github.com
|
|
IdentityFile ~/.ssh/github
|
|
'';
|
|
};
|
|
}
|