From 09b0873a7d78dde1f4b8df900c2ae711fec28a23 Mon Sep 17 00:00:00 2001 From: chase Date: Tue, 21 Oct 2025 10:39:22 -0400 Subject: [PATCH] Remove X11Forwarding from ssh config --- nixos/base.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/base.nix b/nixos/base.nix index 50bcb22..c269076 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -140,7 +140,6 @@ programs.ssh = { enableAskPassword = false; - forwardX11 = true; extraConfig = '' Host nixarr Hostname 192.168.1.165 @@ -229,7 +228,6 @@ PermitRootLogin = "no"; PasswordAuthentication = false; KbdInteractiveAuthentication = false; - X11Forwarding = true; }; };