From c2038b5324378244ff4eb26785c46657f5752ead Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 28 Jan 2022 11:45:06 +0530 Subject: [PATCH] systemd: Start ssh-agent with systemd user See https://wiki.archlinux.org/title/SSH_keys#Start_ssh-agent_with_systemd_user --- .../user/default.target.wants/ssh-agent.service | 1 + systemd/.config/systemd/user/ssh-agent.service | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 120000 systemd/.config/systemd/user/default.target.wants/ssh-agent.service create mode 100644 systemd/.config/systemd/user/ssh-agent.service diff --git a/systemd/.config/systemd/user/default.target.wants/ssh-agent.service b/systemd/.config/systemd/user/default.target.wants/ssh-agent.service new file mode 120000 index 0000000..0971380 --- /dev/null +++ b/systemd/.config/systemd/user/default.target.wants/ssh-agent.service @@ -0,0 +1 @@ +/home/core/.config/systemd/user/ssh-agent.service \ No newline at end of file diff --git a/systemd/.config/systemd/user/ssh-agent.service b/systemd/.config/systemd/user/ssh-agent.service new file mode 100644 index 0000000..5c59cbf --- /dev/null +++ b/systemd/.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