Remote Desktop: Difference between revisions

From NixOS Wiki
imported>Mic92
No edit summary
imported>Volth
Line 18: Line 18:
networking.firewall.allowedTCPPorts = [ 3389 ];
networking.firewall.allowedTCPPorts = [ 3389 ];
</source>
</source>
<code>freerdp</code> or <code>remmina</code> can be used on the client side.


=== Guacamole ===
=== Guacamole ===

Revision as of 01:32, 24 August 2017

Tiger VNC

Nixpkgs has a package but no service. The server component can be started using the vncserver command. To connect use the vncviewer command.

x2go

X2go packaged in nixos as x2goclient.

RDP

NixOS has first class support for XRDP server.

services.xrdp.enable = true:
services.xrdp.defaultWindowManager = "${pkgs.icewm}/bin/icewm";
networking.firewall.allowedTCPPorts = [ 3389 ];

freerdp or remmina can be used on the client side.

Guacamole

Not yet added to nixpkgs

https://github.com/NixOS/nixpkgs/issues/17879