os/profiles/ssh/default.nix

9 lines
164 B
Nix
Raw Normal View History

2020-06-17 23:36:38 -06:00
{ ... }: {
services.openssh = {
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
forwardX11 = true;
};
}