ark/modules/network/ssh.nix

9 lines
155 B
Nix
Raw Permalink Normal View History

2020-11-21 23:54:07 +03:00
{
services.openssh = {
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
forwardX11 = true;
};
}