Unable to SSH: never prompts for password

Hi, I’ve recently received my Umbrel Home. One of the firs things I did was try to ssh into it with ssh -t umbrel@umbrel.local. It never prompts me for a password. When ssh-in with verbose mode I see that it tries to ssh using my private keys.

Anyone else experienced this?

I was able to figure it out. I edited my ~/.ssh/config file and add this:

Host umbrel
    HostName umbrel.local
    User umbrel
    PreferredAuthentications password
    PubkeyAuthentication no

Afterwords I ssh-ed using ssh umbrel.