openssh: Update tests to use new option name

main
Daniel Frank 2 years ago
parent 6d985ef174
commit 11b2191b74
No known key found for this signature in database
GPG Key ID: 063CCCAD04182D32
  1. 2
      nixos/tests/borgbackup.nix
  2. 2
      nixos/tests/btrbk.nix
  3. 2
      nixos/tests/google-oslogin/server.nix

@ -106,7 +106,7 @@ in {
services.openssh = {
enable = true;
passwordAuthentication = false;
challengeResponseAuthentication = false;
kbdInteractiveAuthentication = false;
};
services.borgbackup.repos.repo1 = {

@ -53,7 +53,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
services.openssh = {
enable = true;
passwordAuthentication = false;
challengeResponseAuthentication = false;
kbdInteractiveAuthentication = false;
};
services.btrbk = {
extraPackages = [ pkgs.lz4 ];

@ -17,7 +17,7 @@ in {
};
services.openssh.enable = true;
services.openssh.challengeResponseAuthentication = false;
services.openssh.kbdInteractiveAuthentication = false;
services.openssh.passwordAuthentication = false;
security.googleOsLogin.enable = true;

Loading…
Cancel
Save