openssh: Update tests to use new option name

Changed files
+3 -3
nixos
tests
+1 -1
nixos/tests/borgbackup.nix
···
services.openssh = {
enable = true;
passwordAuthentication = false;
-
challengeResponseAuthentication = false;
+
kbdInteractiveAuthentication = false;
};
services.borgbackup.repos.repo1 = {
+1 -1
nixos/tests/btrbk.nix
···
services.openssh = {
enable = true;
passwordAuthentication = false;
-
challengeResponseAuthentication = false;
+
kbdInteractiveAuthentication = false;
};
services.btrbk = {
extraPackages = [ pkgs.lz4 ];
+1 -1
nixos/tests/google-oslogin/server.nix
···
};
services.openssh.enable = true;
-
services.openssh.challengeResponseAuthentication = false;
+
services.openssh.kbdInteractiveAuthentication = false;
services.openssh.passwordAuthentication = false;
security.googleOsLogin.enable = true;