Fixes SSH agent socket path mismatch issue where system socket unit sets SSH_AUTH_SOCK to wrong path. This service runs standalone without socket activation to avoid conflicts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
241 B
Desktop File
12 lines
241 B
Desktop File
[Unit]
|
|
Description=SSH Agent
|
|
Documentation=man:ssh-agent(1)
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
|
|
ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
|
|
ExecStartPost=/bin/sleep 1
|
|
|
|
[Install]
|
|
WantedBy=default.target
|