From aa661ce61b9f3ff83615d4da8b6b782a7bbaa3c4 Mon Sep 17 00:00:00 2001
From: Joe Rayhawk <jrayhawk@fairlystable.org>
Date: Tue, 10 Sep 2024 18:25:25 -0700
Subject: Initial gitignore and wlroots session management

---
 .config/systemd/user/default.target.wants/ssh-agent.service |  1 +
 .config/systemd/user/ssh-agent.service                      | 12 ++++++++++++
 2 files changed, 13 insertions(+)
 create mode 120000 .config/systemd/user/default.target.wants/ssh-agent.service
 create mode 100644 .config/systemd/user/ssh-agent.service

(limited to '.config/systemd/user')

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..fbfd099
--- /dev/null
+++ b/.config/systemd/user/default.target.wants/ssh-agent.service
@@ -0,0 +1 @@
+../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..baba500
--- /dev/null
+++ b/.config/systemd/user/ssh-agent.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=ssh-agent
+
+[Service]
+Type=simple
+Environment=SSH_AUTH_SOCK=%t/ssh-agent
+Environment=DISPLAY=:0
+ExecStart=/usr/bin/ssh-agent -d -a $SSH_AUTH_SOCK
+
+[Install]
+WantedBy=default.target
+
-- 
cgit v1.2.3