From 81a91b3b0ad6795036d22fedf835bb6bb002ea56 Mon Sep 17 00:00:00 2001 From: Justin Gassner Date: Fri, 25 Aug 2023 15:40:52 +0200 Subject: Start SSH Agent via systemd user service --- .config/systemd/user/default.target.wants/ssh-agent.service | 1 + .config/systemd/user/ssh-agent.service | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 120000 .config/systemd/user/default.target.wants/ssh-agent.service create mode 100644 .config/systemd/user/ssh-agent.service (limited to '.config/systemd/user') diff --git a/.config/systemd/user/default.target.wants/ssh-agent.service b/.config/systemd/user/default.target.wants/ssh-agent.service new file mode 120000 index 0000000..8124097 --- /dev/null +++ b/.config/systemd/user/default.target.wants/ssh-agent.service @@ -0,0 +1 @@ +/home/justin/.config/systemd/user/ssh-agent.service \ No newline at end of file diff --git a/.config/systemd/user/ssh-agent.service b/.config/systemd/user/ssh-agent.service new file mode 100644 index 0000000..5c59cbf --- /dev/null +++ b/.config/systemd/user/ssh-agent.service @@ -0,0 +1,12 @@ +[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 -- cgit v1.2.3-54-g00ecf