ark/modules/network/ssh.nix
2022-04-09 21:33:13 +03:00

9 lines
155 B
Nix

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