summaryrefslogtreecommitdiffstatshomepage
path: root/ssh
diff options
context:
space:
mode:
Diffstat (limited to 'ssh')
-rw-r--r--ssh/.config/profile.d/10-ssh.sh3
-rw-r--r--ssh/.config/systemd/user/ssh-agent.service11
2 files changed, 14 insertions, 0 deletions
diff --git a/ssh/.config/profile.d/10-ssh.sh b/ssh/.config/profile.d/10-ssh.sh
new file mode 100644
index 0000000..82e3b31
--- /dev/null
+++ b/ssh/.config/profile.d/10-ssh.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
diff --git a/ssh/.config/systemd/user/ssh-agent.service b/ssh/.config/systemd/user/ssh-agent.service
new file mode 100644
index 0000000..8d45631
--- /dev/null
+++ b/ssh/.config/systemd/user/ssh-agent.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=SSH key agent
+
+[Service]
+Type=simple
+Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
+Environment=DISPLAY=:0
+ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
+
+[Install]
+WantedBy=default.target