From c2cf0b08fa38cad431bf1b1b503fea3334bacb31 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 14 Apr 2019 18:32:58 +0800 Subject: [PATCH] enable SSH X11 forwarding X11's crappy "network transparent" protocol is somewhat usable with a wired GbE connection straight to the server. --- nixbld-etc-nixos/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixbld-etc-nixos/configuration.nix b/nixbld-etc-nixos/configuration.nix index dc95162..2bf41d9 100644 --- a/nixbld-etc-nixos/configuration.nix +++ b/nixbld-etc-nixos/configuration.nix @@ -43,6 +43,7 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; + services.openssh.forwardX11 = true; # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 631 5901 80 443 ];