os/profiles/ssh/default.nix

9 lines
164 B
Nix
Raw Normal View History

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