aboutsummaryrefslogtreecommitdiffstats
path: root/.config/systemd/user
diff options
context:
space:
mode:
Diffstat (limited to '.config/systemd/user')
-rw-r--r--.config/systemd/user/ssh-agent.service13
-rw-r--r--.config/systemd/user/tmux.service13
2 files changed, 26 insertions, 0 deletions
diff --git a/.config/systemd/user/ssh-agent.service b/.config/systemd/user/ssh-agent.service
new file mode 100644
index 0000000..ab9d0d0
--- /dev/null
+++ b/.config/systemd/user/ssh-agent.service
@@ -0,0 +1,13 @@
+# /usr/lib/systemd/user/ssh-agent.service
+[Unit]
+Description=SSH key agent
+After=local-fs.target
+ConditionFileIsExecutable=/usr/bin/ssh-agent
+
+[Service]
+Type=forking
+Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
+ExecStart=/usr/bin/ssh-agent -a $SSH_AUTH_SOCK
+
+[Install]
+WantedBy=default.target
diff --git a/.config/systemd/user/tmux.service b/.config/systemd/user/tmux.service
new file mode 100644
index 0000000..084efc0
--- /dev/null
+++ b/.config/systemd/user/tmux.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Start tmux in detached session
+After=local-fs.target
+ConditionFileIsExecutable=/usr/bin/tmux
+
+[Service]
+Type=forking
+Environment=TMUX_TMPDIR=%t
+ExecStart=/usr/bin/tmux new-session -s user -d
+ExecStop=/usr/bin/tmux kill-session -t user
+
+[Install]
+WantedBy=default.target