12 lines
157 B
Nix
12 lines
157 B
Nix
{ ... }:
|
|
|
|
let
|
|
onePassPath = "~/.1password/agent.sock";
|
|
in
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = "IdentityAgent ${onePassPath}";
|
|
};
|
|
}
|