Update rufus setup

This commit is contained in:
Bastian Gruber 2026-01-28 14:33:08 -04:00
parent 6b0b10d1a2
commit 98b265a8d0
Signed by: gruberb
GPG key ID: 426AF1CBA0530691
2 changed files with 5 additions and 2 deletions

View file

@ -5,7 +5,7 @@
{{- if eq $hostname "maple" }} {{- if eq $hostname "maple" }}
machine = "server" machine = "server"
editor = "hx" editor = "hx"
{{- else if eq $hostname "archbook" }} {{- else if eq $hostname "rufus" }}
machine = "laptop" machine = "laptop"
editor = "hx" editor = "hx"
{{- else if eq $os "darwin" }} {{- else if eq $os "darwin" }}

View file

@ -19,7 +19,10 @@ fish_add_path -g ~/.local/bin
# macOS-specific: Homebrew paths # macOS-specific: Homebrew paths
fish_add_path -g /opt/homebrew/bin fish_add_path -g /opt/homebrew/bin
fish_add_path -g /opt/homebrew/sbin fish_add_path -g /opt/homebrew/sbin
# SSH agent socket (systemd user service) {{- end }}
{{- if or (eq .machine "laptop") (eq .machine "macbook") }}
# SSH agent socket (systemd user service on Linux, launchd on macOS)
set -gx SSH_AUTH_SOCK $XDG_RUNTIME_DIR/ssh-agent.socket set -gx SSH_AUTH_SOCK $XDG_RUNTIME_DIR/ssh-agent.socket
{{- end }} {{- end }}