aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/nushell/env.nu1
-rw-r--r--.config/systemd/user/ssh-agent.service12
2 files changed, 13 insertions, 0 deletions
diff --git a/.config/nushell/env.nu b/.config/nushell/env.nu
index 10574d9..975d534 100644
--- a/.config/nushell/env.nu
+++ b/.config/nushell/env.nu
@@ -61,6 +61,7 @@ let-env NU_PLUGIN_DIRS = [
# Wayland things
let-env MOZ_ENABLE_WAYLAND = 1
+let-env SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent.socket"
# To add entries to PATH (on Windows you might use Path), you can use the following pattern:
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