8 lines
164 B
Nix
8 lines
164 B
Nix
{ ... }: {
|
|
services.openssh = {
|
|
enable = true;
|
|
challengeResponseAuthentication = false;
|
|
passwordAuthentication = false;
|
|
forwardX11 = true;
|
|
};
|
|
}
|