1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-27 18:16:59 +03:00
digga/profiles/ssh/default.nix
2020-07-30 22:17:28 -06:00

9 lines
164 B
Nix

{ ... }: {
services.openssh = {
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
forwardX11 = true;
};
}