mirror of
https://github.com/divnix/digga.git
synced 2024-12-28 10:32:04 +03:00
9 lines
164 B
Nix
9 lines
164 B
Nix
|
{ ... }: {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
challengeResponseAuthentication = false;
|
||
|
passwordAuthentication = false;
|
||
|
forwardX11 = true;
|
||
|
};
|
||
|
}
|