pub-solar-os/profiles/ssh/default.nix
2020-06-17 23:36:38 -06:00

10 lines
165 B
Nix

{ ... }: {
services.openssh = {
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
forwardX11 = true;
};
}