Nonstandard sshaskpass prompt format

Hi, I am trying to connect to my nixos server using ksshaskpass but it always returns this error:

❯ ssh 192.168.103.137
ksshaskpass: Unable to parse phrase "(wafadmin@192.168.103.137) Password: "

I can connect to the server but cant set the ksshaskpass to remember my password. The problem isnt client side becouse when I try to connect to my debian server it works without problems.
I tried setting programs.ssh.askPassword = “”; but that didnt help and I cant find any other way to fix it.

Does anybody have any idea how to fix it so it uses standard openSSH askpass prompt format?

Does anybody know the solution for this?

With help from NixOS matrix community I found out the problem and solution.
The problem is that debian which I tought used standard config had settings different from standard sshd and that was the Keaboard Interactive setting. sshd_config(5) — openssh-server — Debian unstable — Debian Manpages
The solution is to disable it whith this in the nixos configuration.nix:

services.openssh.settings.KbdInteractiveAuthentication = false;