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.
This commit is contained in:
Harald Hoyer 2025-09-11 13:39:28 +02:00
parent 296aac6864
commit 1ae46cd7b8

View file

@ -136,6 +136,8 @@ with lib.metacfg;
systemd.services.gnome-remote-desktop = { systemd.services.gnome-remote-desktop = {
wantedBy = [ "graphical.target" ]; wantedBy = [ "graphical.target" ];
}; };
networking.firewall.allowedTCPPorts = [ 3389 ];
networking.firewall.allowedUDPPorts = [ 3389 ];
environment.sessionVariables = { environment.sessionVariables = {
LIBVA_DRIVER_NAME = "iHD"; LIBVA_DRIVER_NAME = "iHD";