fix(whitby): disable sshd(8) password authentication.

Change-Id: I44068c253840a34e3c21be2bd03b7569df1c3b98
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1718
Reviewed-by: glittershark <grfn@gws.fyi>
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
multi 2020-08-12 23:15:35 +01:00
parent e38015f7b5
commit 8af65f6858

View file

@ -170,7 +170,11 @@ in lib.fix(self: {
};
programs.mtr.enable = true;
services.openssh.enable = true;
services.openssh = {
enable = true;
passwordAuthentication = false;
challengeResponseAuthentication = false;
};
# Run a handful of Buildkite agents to support parallel builds.
services.buildkite-agents = listToAttrs (map (n: rec {