Guest display scaling on macOS + vmware fusion

Trying to figure out why my nixOS 22.11 (Raccoon) guest won’t fullscreen and scale the display to fill.

macOS Ventura (Intel-based Mac) running VMware fusion 12.2.5. Here is my configuration:

{ config, pkgs, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      ./hardware-configuration.nix
    ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  networking.hostName = "nixos"; # Define your hostname.
  networking.networkmanager.enable = true;  
  time.timeZone = "America/New_York";
  i18n.defaultLocale = "en_US.UTF-8";

  # Enable the X11 windowing system.
  services.xserver = {
	enable = true;
	layout = "us";

	displayManager = {
		defaultSession = "none+i3";
		lightdm.enable = true;
	};

	windowManager = {
		i3.enable = true;
	};
  };

  virtualisation.vmware.guest.enable = true;

  users.users.bob = {
    isNormalUser = true;
    extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
    packages = with pkgs; [
      firefox
    ];
  };

  environment.systemPackages = with pkgs; [
    vim 
    wget
    curl
  ];

  services.openssh.enable = true;
  networking.firewall.enable = false;
  system.copySystemConfiguration = true;
  system.stateVersion = "22.11"; # Did you read the comment?

}

This same configuration works on a windows box with vmware workstation. Are there any special settings I’m missing for Fusion?