1password update

This commit is contained in:
2024-05-17 10:28:33 -04:00
parent 0974d3eb4a
commit acff553975
6 changed files with 13 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, config, ... }:
{
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ~/.1password/agent.sock
'';
};
}