From 8b424cff0aa80facfcf911d30f41296a7ac5567c Mon Sep 17 00:00:00 2001 From: fruchti Date: Fri, 4 Jul 2025 09:10:22 +0200 Subject: [PATCH] Base, rupert: Enable X11 forwarding on SSH --- base/defaults.nix | 1 + hosts/Rupert.nix | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/base/defaults.nix b/base/defaults.nix index 0a52911..b42a3e6 100644 --- a/base/defaults.nix +++ b/base/defaults.nix @@ -9,6 +9,7 @@ settings = { PasswordAuthentication = false; KbdInteractiveAuthentication = false; + X11Forwarding = true; }; }; diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index ef0fa9c..d1d9fdb 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -103,8 +103,9 @@ in services.openssh = { enable = true; settings = { - # ForwardX11 = true; PasswordAuthentication = false; + KbdInteractiveAuthentication = false; + X11Forwarding = true; }; };