dotfiles/dot_config/systemd/user/ssh-agent.service.tmpl

15 lines
299 B
Cheetah

{{- if (eq .chezmoi.os "linux") -}}
[Unit]
Description=SSH key agent
[Service]
Type=simple
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
# DISPLAY required for ssh-askpass to work
Environment=DISPLAY=:0
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
[Install]
WantedBy=default.target
{{ end }}