mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Add ssh-agent configuration and enable service on user install
This commit is contained in:
23
install/config/ssh-agent.sh
Normal file
23
install/config/ssh-agent.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
# add ssh keys to ssh-agent
|
||||
mkdir -p ~/.ssh
|
||||
echo 'AddKeysToAgent yes' | tee ~/.ssh/config >/dev/null
|
||||
|
||||
# Create systemd service for ssh-agent
|
||||
mkdir -p ~/.config/systemd/user
|
||||
tee ~/.config/systemd/user/ssh-agent.service >/dev/null <<EOF
|
||||
[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
|
||||
EOF
|
||||
|
||||
# Start ssh-agent automatically for user
|
||||
sudo systemctl enable --user ssh-agent.service
|
||||
Reference in New Issue
Block a user