11 lines
207 B
Nix
11 lines
207 B
Nix
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
Host *
|
|
IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
|
SetEnv TERM=xterm-256color
|
|
'';
|
|
};
|
|
}
|