Developers, every one of your machines should have its own ssh key. Creating one is very simple. Here’s a handy one-liner by Ben McDonald that you can add as an alias to your dotfiles:
ssh-keygen -t ed25519 -f $HOME/.ssh/id_ed25519 -C "$(whoami)@$(hostname)-$(date +'%y%m%d')"
This will create those lovely tiny ed25519 keys that we all know and love (thanks, Daniel!)