<samueldr>
notable developer and maintainer of dolphin emulator
<gchristensen>
alright!
<samueldr>
and they already contributed through a PR, which was merged, 10 hours ago
<gchristensen>
booya
<Drakonis>
making it to the big leagues
<elvishjerricco>
Hm. I want to set AddKeysToAgent=yes in ~/.ssh/config, but I can't find a way to have it set a timeout by default. I want it to be like the gpg-agent where it asks for a password and caches it in the agent for like 5min
<elvishjerricco>
You can use `ssh-add -t`, but I was hoping for something that just happens when I invoke `ssh`, just like `gpg`.
<sphalerite>
elvishjerricco: If this option is set to yes and a key is loaded from a file, the key and its passphrase are added to the agent with the default lifetime, as if by ssh-add(1).
<elvishjerricco>
sphalerite: Yep. Can't seem to find a way to change that default
<elvishjerricco>
Guessing there isn't one
<sphalerite>
hm good point
<sphalerite>
that's weird though, since it mentions "default lifetime" and not "infinite lifetime"
<elvishjerricco>
I could just use GPG itself for SSH auth, but last time I tried that the TTY issues were way too annoying.
<sphalerite>
elvishjerricco: aaah spawn the *agent* with -t to set the default lifetime
<elvishjerricco>
sphalerite: Oohh nice
<elvishjerricco>
sphalerite: Where'd you find that?
<sphalerite>
man ssh-agent :)
<elvishjerricco>
Of course :P
<elvishjerricco>
Now to figure out how to add args to ssh-agent with `programs.ssh.startAgent = true;`...
<sphalerite>
It did take looking at man ssh_config and man ssh-add and starting at them for a while tohugh :p