From 1c3216630dbeac435d1b5c5607dd3e529ea08643 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Wed, 17 Jun 2020 23:36:38 -0600 Subject: [PATCH] ssh: init profile --- profiles/ssh/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 profiles/ssh/default.nix diff --git a/profiles/ssh/default.nix b/profiles/ssh/default.nix new file mode 100644 index 0000000..da8645c --- /dev/null +++ b/profiles/ssh/default.nix @@ -0,0 +1,9 @@ +{ ... }: { + services.openssh = { + enable = true; + challengeResponseAuthentication = false; + passwordAuthentication = false; + forwardX11 = true; + }; +} +