Remove challenge response auth, authorize spike to build

This commit is contained in:
Artemis Tosini 2021-02-24 18:48:19 +00:00
parent fd04e123fd
commit 84c8848c6f
3 changed files with 3 additions and 0 deletions

View file

@ -9,6 +9,7 @@
useDefaultShell = true; useDefaultShell = true;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFOBdARV3DVx4fKTf1hCSmOz+S06pI28cvrdo+FbWDP/ root@rainbowdash" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFOBdARV3DVx4fKTf1hCSmOz+S06pI28cvrdo+FbWDP/ root@rainbowdash"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIElCYORRBERl/as01Obp1Og/mdy28V7gw32uCZseOSZt root@spike"
]; ];
}; };
} }

View file

@ -4,6 +4,7 @@
services.openssh = { services.openssh = {
enable = true; enable = true;
passwordAuthentication = false; passwordAuthentication = false;
challengeResponseAuthentication = false;
}; };
# users.users.artemis.openssh.authorizedKeys.keys set in private # users.users.artemis.openssh.authorizedKeys.keys set in private
} }

View file

@ -9,6 +9,7 @@
../../sets/hacking.nix ../../sets/hacking.nix
../../sets/laptop.nix ../../sets/laptop.nix
../../sets/ssh.nix ../../sets/ssh.nix
../../sets/buildMachines.nix
../../sets/workstation.nix ../../sets/workstation.nix
]; ];