NixOS on VMware in an VPS

Hi folks, i hope you have all a nice day!

I can run NixOS on my vps, but i have one little problem… :sweat_smile:
I run it with X11 and xfce/i3 and the problem is that i can only select a few desktop resolutions, but especially 1920x1080 i can not select.

X11, xfce/i3 & VMware guest tools in my configuration.nix:
" # Enable the X11 windowing system.
services.xserver.enable = true;

Enable LightDM and XFCE+i3.

services.xserver.displayManager.lightdm.greeters.slick.enable = true;
services.xserver.desktopManager.xfce.enable = true;
services.xserver.windowManager.i3.enable = true;
services.xserver.displayManager.defaultSession = “xfce”;

List packages installed in system profile. To search, run:

$ nix search wget

nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
open-vm-tools

List service that you want to enable:

virtualisation.vmware.guest.enable = true; "

Can anyone help me? :grin: