fix(nixos): open port 22000 for rustdesk and add freerdp

- Added TCP port 22000 to networking.firewall.allowedTCPPorts for rustdesk server access
- Included freerdp package in GUI services module
- Maintains consistency with recent configuration refactorings and feature additions
This commit is contained in:
Harald Hoyer 2025-12-03 15:54:35 +01:00
parent f5be97a2f4
commit b9d5e775d2
2 changed files with 4 additions and 0 deletions

View file

@ -12,6 +12,9 @@ with lib.metacfg;
];
services.rustdesk-server.signal.enable = false;
networking.firewall.allowedTCPPorts = [
22000
];
services.tailscale.enable = true;