Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
dmacx
4 years agoOccasional Contributor
Working in VSC with 1p-SSH keys / Unlock 1p many times a day
I love to have SSH keys stored in 1password and not on the local disc any more. This makes my keys more "mobile".
But now with my setup on my daily basis I really have to often unlock 1password (w...
whitw
3 years agoNew Contributor
This is always a solution (depends on your own threat-tolerance):
cli
[manjaro ~]# cat /etc/polkit-1/rules.d/10-ssh.rules
javascript
/* Allow users in UPDATE_WITH_YOUR_USER_GROUP group to use 1Password SSH agent without authentication */
polkit.addRule(function(action, subject) {
if (action.id == "com.1password.1Password.authorizeSshAgent" &&
subject.isInGroup("UPDATE_WITH_YOUR_USER_GROUP")) {
return polkit.Result.YES;
}
});