2025-12-30 10:34:08 +01:00

11 lines
157 B
Nix

{
# The OpenSSH agent
programs.ssh = {
startAgent = true;
extraConfig = ''
Host github.com
IdentityFile ~/.ssh/github
'';
};
}