ssh: init profile

This commit is contained in:
Timothy DeHerrera 2020-06-17 23:36:38 -06:00
parent a0cef270aa
commit 1c3216630d
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
1 changed files with 9 additions and 0 deletions

9
profiles/ssh/default.nix Normal file
View File

@ -0,0 +1,9 @@
{ ... }: {
services.openssh = {
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
forwardX11 = true;
};
}