diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2022-12-04 19:01:18 -0600 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2022-12-04 19:01:18 -0600 |
| commit | bd6155eef9232226ed8fb9b5bcf007f5662ddc10 (patch) | |
| tree | bdd385451f2ce6e561ea4677ee7d74044b25c21b /.config/systemd | |
| parent | 1ec73cc2c14d2f62c32046d9585c3a745531d37a (diff) | |
add ssh-agent
Diffstat (limited to '.config/systemd')
| -rw-r--r-- | .config/systemd/user/ssh-agent.service | 12 |
1 files changed, 12 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..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 |
