ark/profiles/network/ssh.nix
2021-05-24 22:39:43 +03:00

9 lines
155 B
Nix

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