I have a NixOS system with the Cinnamon desktop. I want to access it from a Linux Mint system using remmina. The following is part of my configuration.nix file:
### Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver.displayManager = {
lightdm.enable = true;
autoLogin = {
enable = true;
user = "xxx";
};
};
### Enable the Cinnamon Desktop Environment.
services.xserver.desktopManager.cinnamon.enable = true;
### Enable RDP.
services.xrdp = {
enable = true;
defaultWindowManager = "cinnamon";
openFirewall = true;
}
When accessing Nix from Linux Mint via remmina, the only thing showing is the xterm terminal emulator. What has to change to see the Cinnamon desktop?