Protect what matters – even after you're gone. Make a plan for your digital legacy today.
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
4 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;
}
});