From b617dad070af4833291bc5dec78e02e22fd47f5f Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Fri, 9 Aug 2024 21:39:28 +0700 Subject: [PATCH] openssh: disable usedns because it slows down login --- system/modules/openssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/modules/openssh.nix b/system/modules/openssh.nix index 2912d30..95d7295 100644 --- a/system/modules/openssh.nix +++ b/system/modules/openssh.nix @@ -12,7 +12,7 @@ in settings = { PasswordAuthentication = false; KbdInteractiveAuthentication = false; - UseDns = true; + UseDns = false; X11Forwarding = false; PermitRootLogin = "no"; };