From 1ae46cd7b8e07ebd6a57198b057c1cf83f3d6030 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 11 Sep 2025 13:39:28 +0200 Subject: [PATCH] feat(x1): open firewall ports for remote desktop - Allowed TCP and UDP port 3389 in the firewall configuration. - Ensures proper functionality of gnome-remote-desktop on the x1 system. --- systems/x86_64-linux/x1/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/x86_64-linux/x1/default.nix b/systems/x86_64-linux/x1/default.nix index 97252ec..af3504a 100644 --- a/systems/x86_64-linux/x1/default.nix +++ b/systems/x86_64-linux/x1/default.nix @@ -136,6 +136,8 @@ with lib.metacfg; systemd.services.gnome-remote-desktop = { wantedBy = [ "graphical.target" ]; }; + networking.firewall.allowedTCPPorts = [ 3389 ]; + networking.firewall.allowedUDPPorts = [ 3389 ]; environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD";