ark/profiles/ssh/default.nix

9 lines
164 B
Nix
Raw Normal View History

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