dotfiles/home/andrei/ssh.nix
2025-07-12 12:37:52 +03:00

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
'';
};
}