2015-05-13 10:31:32 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2018-05-28 09:24:29 +02:00
|
|
|
cfg = config.virtualisation.vmware.guest;
|
2016-12-01 15:59:53 +01:00
|
|
|
open-vm-tools = if cfg.headless then pkgs.open-vm-tools-headless else pkgs.open-vm-tools;
|
2016-11-16 23:43:42 +01:00
|
|
|
xf86inputvmmouse = pkgs.xorg.xf86inputvmmouse;
|
2015-05-13 10:31:32 +02:00
|
|
|
in
|
|
|
|
{
|
2018-05-28 09:24:29 +02:00
|
|
|
options.virtualisation.vmware.guest = {
|
|
|
|
enable = mkEnableOption "VMWare Guest Support";
|
|
|
|
headless = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to disable X11-related features.";
|
2016-12-01 15:59:53 +01:00
|
|
|
};
|
2015-05-13 10:31:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions = [ {
|
|
|
|
assertion = pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64;
|
2018-08-20 21:11:29 +02:00
|
|
|
message = "VMWare guest is not currently supported on ${pkgs.stdenv.hostPlatform.system}";
|
2015-05-13 10:31:32 +02:00
|
|
|
} ];
|
|
|
|
|
2018-05-28 09:24:29 +02:00
|
|
|
boot.initrd.kernelModules = [ "vmw_pvscsi" ];
|
|
|
|
|
2015-05-13 10:31:32 +02:00
|
|
|
environment.systemPackages = [ open-vm-tools ];
|
|
|
|
|
|
|
|
systemd.services.vmware =
|
|
|
|
{ description = "VMWare Guest Service";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig.ExecStart = "${open-vm-tools}/bin/vmtoolsd";
|
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
environment.etc.vmware-tools.source = "${open-vm-tools}/etc/vmware-tools/*";
|
2016-04-23 03:08:06 +02:00
|
|
|
|
2016-12-01 15:59:53 +01:00
|
|
|
services.xserver = mkIf (!cfg.headless) {
|
2015-05-13 10:31:32 +02:00
|
|
|
videoDrivers = mkOverride 50 [ "vmware" ];
|
2016-11-16 23:43:42 +01:00
|
|
|
modules = [ xf86inputvmmouse ];
|
2015-05-13 10:31:32 +02:00
|
|
|
|
|
|
|
config = ''
|
2016-11-16 23:43:42 +01:00
|
|
|
Section "InputClass"
|
2015-05-13 10:31:32 +02:00
|
|
|
Identifier "VMMouse"
|
2016-11-16 23:43:42 +01:00
|
|
|
MatchDevicePath "/dev/input/event*"
|
|
|
|
MatchProduct "ImPS/2 Generic Wheel Mouse"
|
2015-05-13 10:31:32 +02:00
|
|
|
Driver "vmmouse"
|
|
|
|
EndSection
|
|
|
|
'';
|
|
|
|
|
|
|
|
displayManager.sessionCommands = ''
|
|
|
|
${open-vm-tools}/bin/vmware-user-suid-wrapper
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|