9a1507f253
Fix automatic mouse grabbing/releasing when running as a vmware guest. 1. The xf86inputvmmouse is not loaded by default. Add it. 2. InptutDevice sections for which specify a driver are ignored if AutoAddDevices is enabled (which it is by default). See [1]. Instead use an InputClass to load the vmmouse driver. [1] https://www.x.org/archive/X11R7.7/doc/man/man5/xorg.conf.5.xhtml#heading8
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.vmwareGuest;
|
|
open-vm-tools = pkgs.open-vm-tools;
|
|
xf86inputvmmouse = pkgs.xorg.xf86inputvmmouse;
|
|
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" ];
|
|
modules = [ xf86inputvmmouse ];
|
|
|
|
config = ''
|
|
Section "InputClass"
|
|
Identifier "VMMouse"
|
|
MatchDevicePath "/dev/input/event*"
|
|
MatchProduct "ImPS/2 Generic Wheel Mouse"
|
|
Driver "vmmouse"
|
|
EndSection
|
|
'';
|
|
|
|
displayManager.sessionCommands = ''
|
|
${open-vm-tools}/bin/vmware-user-suid-wrapper
|
|
'';
|
|
};
|
|
};
|
|
}
|