summary refs log tree commit diff
path: root/nixos/modules/virtualisation/vmware-guest.nix
blob: b9a4f3b11dc163161571fbfacd91c1e5c4b65c9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.vmwareGuest;
  open-vm-tools = pkgs.open-vm-tools;
in
{
  options = {
    services.vmwareGuest.enable = mkEnableOption "VMWare Guest Support";
  };

  config = mkIf cfg.enable {
    assertions = [ {
      assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
      message = "VMWare guest is not currently supported on ${pkgs.stdenv.system}";
    } ];

    environment.systemPackages = [ open-vm-tools ];

    systemd.services.vmware =
      { description = "VMWare Guest Service";
        wantedBy = [ "multi-user.target" ];
        serviceConfig.ExecStart = "${open-vm-tools}/bin/vmtoolsd";
      };

    environment.etc."vmware-tools".source = "${pkgs.open-vm-tools}/etc/vmware-tools/*";

    services.xserver = {
      videoDrivers = mkOverride 50 [ "vmware" ];

      config = ''
          Section "InputDevice"
            Identifier "VMMouse"
            Driver "vmmouse"
          EndSection
        '';

      serverLayoutSection = ''
          InputDevice "VMMouse"
        '';

      displayManager.sessionCommands = ''
          ${open-vm-tools}/bin/vmware-user-suid-wrapper
        '';
    };
  };
}