forked from pub-solar/os
10 lines
165 B
Nix
10 lines
165 B
Nix
|
{ ... }: {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
challengeResponseAuthentication = false;
|
||
|
passwordAuthentication = false;
|
||
|
forwardX11 = true;
|
||
|
};
|
||
|
}
|
||
|
|