diff options
Diffstat (limited to 'systemd/user/ssh-agent.service')
-rw-r--r-- | systemd/user/ssh-agent.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/systemd/user/ssh-agent.service b/systemd/user/ssh-agent.service new file mode 100644 index 0000000..ca58d4f --- /dev/null +++ b/systemd/user/ssh-agent.service @@ -0,0 +1,13 @@ +[Unit] +Description=SSH key agent + +[Service] +Type=simple +Environment=SSH_AUTH_SOCK=%t/agent.sock +# DISPLAY required for ssh-askpass to work +Environment=DISPLAY=:0 +ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK +RuntimeDirectory=ssh-agent + +[Install] +WantedBy=default.target |