summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Gassner <justin.gassner@mailbox.org>2023-08-25 15:40:52 +0200
committerJustin Gassner <justin.gassner@mailbox.org>2023-08-25 15:40:52 +0200
commit81a91b3b0ad6795036d22fedf835bb6bb002ea56 (patch)
tree89cd5c9e3e805fd526a69fdcaabdd9719277d528
parent8bf4eb772e4238139f7ed9430506454b75883abe (diff)
downloaddotfiles-81a91b3b0ad6795036d22fedf835bb6bb002ea56.tar.zst
Start SSH Agent via systemd user service
-rw-r--r--.bash_profile1
l---------.config/systemd/user/default.target.wants/ssh-agent.service1
-rw-r--r--.config/systemd/user/ssh-agent.service12
3 files changed, 14 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile
index 7bb0c07..bd355cb 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -6,5 +6,6 @@ export HISTFILE=~/.local/share/bash/history
export LESSHISTFILE=-
export EDITOR=nvim
export VISUAL=$EDITOR
+export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
[[ -f ~/.bashrc ]] && . ~/.bashrc
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