Files
home-manager/tests/modules/services/ssh-agent/darwin/ssh-auth-sock.nix
T

23 lines
799 B
Nix

{
programs.bash.enable = true;
programs.fish.enable = true;
programs.nushell.enable = true;
programs.zsh.enable = true;
services.ssh-agent.enable = true;
nmt.script = ''
assertFileContains \
home-files/.profile \
'export SSH_AUTH_SOCK="$(@system_cmds@/bin/getconf DARWIN_USER_TEMP_DIR)/ssh-agent"'
assertFileContains \
home-files/.config/fish/config.fish \
'set -x SSH_AUTH_SOCK "$(@system_cmds@/bin/getconf DARWIN_USER_TEMP_DIR)/ssh-agent"'
assertFileContains \
home-files/.config/nushell/config.nu \
'$env.SSH_AUTH_SOCK = $"(@system_cmds@/bin/getconf DARWIN_USER_TEMP_DIR)/ssh-agent"'
assertFileContains \
home-files/.zshenv \
'export SSH_AUTH_SOCK="$(@system_cmds@/bin/getconf DARWIN_USER_TEMP_DIR)/ssh-agent"'
'';
}