9 lines
155 B
Nix
9 lines
155 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
challengeResponseAuthentication = false;
|
|
passwordAuthentication = false;
|
|
forwardX11 = true;
|
|
};
|
|
}
|