Setup SSH Agent

This commit is contained in:
Trevor Vallender 2024-03-26 11:47:24 +00:00
parent 4b99c6945b
commit 5d76b8ce01
2 changed files with 13 additions and 0 deletions

View File

@ -18,6 +18,7 @@ $browser = qutebrowser
env = XCURSOR_SIZE,24
env = QT_QPA_PLATFORMTHEME,qt5ct # change to qt6ct if you have that
env = SSH_AUTH_SOCK,$XDG_RUNTIME_DIR/ssh-agent.socket
input {
kb_layout = us

View File

@ -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