From 47437ac0f7f917564e19262f4371c96b07672420 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sun, 24 Oct 2021 13:43:03 +0200 Subject: [PATCH] Add systemd service for ssh-agent --- arch-config/.config/systemd/user/ssh-agent.service | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 arch-config/.config/systemd/user/ssh-agent.service diff --git a/arch-config/.config/systemd/user/ssh-agent.service b/arch-config/.config/systemd/user/ssh-agent.service new file mode 100644 index 00000000..94284103 --- /dev/null +++ b/arch-config/.config/systemd/user/ssh-agent.service @@ -0,0 +1,10 @@ +[Unit] +Description=SSH key agent + +[Service] +Type=simple +Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket +ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK + +[Install] +WantedBy=default.target