dotfiles
1

Configure Feed

Select the types of activity you want to include in your feed.

Modernise ssh config

Juan Nunez-Iglesias (Jun 29, 2026, 12:18 AM +0200) 8d799f06 f70a11a1

+32
+3
dots
··· 36 36 "ghostty/config.ghostty": HOME / ".config" / "ghostty" / "config.ghostty", 37 37 "nvim": HOME / ".config" / "nvim", 38 38 "git/gitconfig": HOME / ".gitconfig", 39 + "ssh/config": HOME / ".ssh" / "config", 40 + "ssh/id_ed25519.pub": HOME / ".ssh" / "id_ed25519.pub", 41 + "ssh/codeberg.pub": HOME / ".ssh" / "codeberg.pub", 39 42 "cosmic/xkb_config": HOME / ".config" / "cosmic" / "com.system76.CosmicComp" / "v1" / "xkb_config", 40 43 "cosmic/custom-shortcuts": HOME / ".config" / "cosmic" / "com.system76.CosmicSettings.Shortcuts" / "v1" / "custom", 41 44 "cosmic/system-actions": HOME / ".config" / "cosmic" / "com.system76.CosmicSettings.Shortcuts" / "v1" / "system_actions",
+1
ssh/codeberg.pub
··· 1 + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICpUh+cMWLhynsejk0XiKiIBaqrhS8Vi2A/gLECxFKqO Codeberg SSH Key
+27
ssh/config
··· 1 + # SSH client config. 2 + # 3 + # Private keys live in 1Password; its agent serves them (IdentityAgent below). 4 + # Each host pins ONE key by its PUBLIC half via IdentitiesOnly + IdentityFile, 5 + # so a connection offers only the right key -- no "too many authentication 6 + # failures" from the agent dumping every key. The .pub files stay on disk 7 + # (public keys aren't secret); the private keys do not. 8 + # 9 + # ssh resolves each option first-match-wins, so specific hosts MUST come before 10 + # `Host *` (which only supplies the shared IdentityAgent). 11 + 12 + Host github.com 13 + User git 14 + IdentitiesOnly yes 15 + IdentityFile ~/.ssh/id_ed25519.pub 16 + 17 + Host knot.jni.codes 18 + IdentitiesOnly yes 19 + IdentityFile ~/.ssh/id_ed25519.pub 20 + 21 + Host codeberg.org 22 + User git 23 + IdentitiesOnly yes 24 + IdentityFile ~/.ssh/codeberg.pub 25 + 26 + Host * 27 + IdentityAgent ~/.1password/agent.sock
+1
ssh/id_ed25519.pub
··· 1 + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFXjTfWvrKsHpoTR0Xbjg8P9vtplHgRAz0InaQeHFfQq jni@fastmail.com