Files
linux-provisioning/config/systemd/bw-ssh-keys.service
Julian Prester c7845fd04d Set personal git identity, fix zshrc theme, improve bw-ssh service
- config/git/gitconfig: real name, email, and SSH signing key
- config/shell/zshrc: fix typo 'powerlevel10zsh' → 'powerlevel10k'
- config/systemd/bw-ssh-keys.service: depend on graphical-session
  instead of network (ssh-agent starts with session); add explicit
  PATH so bw and jq are found; add RemainAfterExit=yes
  (avoids restart loop on oneshot services)
2026-06-07 14:34:18 +10:00

16 lines
331 B
Desktop File
Executable File

[Unit]
Description=Load Bitwarden SSH keys into ssh-agent
After=graphical-session.target
Wants=graphical-session.target
[Service]
Type=oneshot
Environment=PATH=%h/.local/bin:/usr/local/bin:/usr/bin:/bin
ExecStart=%h/.local/bin/bw-load-ssh.sh
RemainAfterExit=yes
Restart=on-failure
RestartSec=30
[Install]
WantedBy=default.target