2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
166 lines
5.7 KiB
Nix
166 lines
5.7 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
cfg = config.virtualisation.vmware.host;
|
|
wrapperDir = "/run/vmware/bin"; # Perfectly fits as /usr/local/bin
|
|
parentWrapperDir = dirOf wrapperDir;
|
|
vmwareWrappers = # Needed as hardcoded paths workaround
|
|
let mkVmwareSymlink =
|
|
program:
|
|
''
|
|
ln -s "${config.security.wrapperDir}/${program}" $wrapperDir/${program}
|
|
'';
|
|
in
|
|
[
|
|
(mkVmwareSymlink "pkexec")
|
|
(mkVmwareSymlink "mount")
|
|
(mkVmwareSymlink "umount")
|
|
];
|
|
in
|
|
{
|
|
options = with lib; {
|
|
virtualisation.vmware.host = {
|
|
enable = mkEnableOption "VMware" // {
|
|
description = ''
|
|
This enables VMware host virtualisation for running VMs.
|
|
|
|
<important><para>
|
|
<literal>vmware-vmx</literal> will cause kcompactd0 due to
|
|
<literal>Transparent Hugepages</literal> feature in kernel.
|
|
Apply <literal>[ "transparent_hugepage=never" ]</literal> in
|
|
option <option>boot.kernelParams</option> to disable them.
|
|
</para></important>
|
|
|
|
<note><para>
|
|
If that didn't work disable <literal>TRANSPARENT_HUGEPAGE</literal>,
|
|
<literal>COMPACTION</literal> configs and recompile kernel.
|
|
</para></note>
|
|
'';
|
|
};
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.vmware-workstation;
|
|
defaultText = literalExpression "pkgs.vmware-workstation";
|
|
description = lib.mdDoc "VMware host virtualisation package to use";
|
|
};
|
|
extraPackages = mkOption {
|
|
type = with types; listOf package;
|
|
default = with pkgs; [ ];
|
|
description = lib.mdDoc "Extra packages to be used with VMware host.";
|
|
example = "with pkgs; [ ntfs3g ]";
|
|
};
|
|
extraConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = lib.mdDoc "Add extra config to /etc/vmware/config";
|
|
example = ''
|
|
# Allow unsupported device's OpenGL and Vulkan acceleration for guest vGPU
|
|
mks.gl.allowUnsupportedDrivers = "TRUE"
|
|
mks.vk.allowUnsupportedDevices = "TRUE"
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.vmware ];
|
|
boot.extraModprobeConfig = "alias char-major-10-229 fuse";
|
|
boot.kernelModules = [ "vmw_pvscsi" "vmw_vmci" "vmmon" "vmnet" "fuse" ];
|
|
|
|
environment.systemPackages = [ cfg.package ] ++ cfg.extraPackages;
|
|
services.printing.drivers = [ cfg.package ];
|
|
|
|
environment.etc."vmware/config".text = ''
|
|
${builtins.readFile "${cfg.package}/etc/vmware/config"}
|
|
${cfg.extraConfig}
|
|
'';
|
|
|
|
environment.etc."vmware/bootstrap".source = "${cfg.package}/etc/vmware/bootstrap";
|
|
environment.etc."vmware/icu".source = "${cfg.package}/etc/vmware/icu";
|
|
environment.etc."vmware-installer".source = "${cfg.package}/etc/vmware-installer";
|
|
|
|
# SUID wrappers
|
|
|
|
security.wrappers = {
|
|
vmware-vmx = {
|
|
setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${cfg.package}/lib/vmware/bin/.vmware-vmx-wrapped";
|
|
};
|
|
};
|
|
|
|
###### wrappers activation script
|
|
|
|
system.activationScripts.vmwareWrappers =
|
|
lib.stringAfter [ "specialfs" "users" ]
|
|
''
|
|
mkdir -p "${parentWrapperDir}"
|
|
chmod 755 "${parentWrapperDir}"
|
|
# We want to place the tmpdirs for the wrappers to the parent dir.
|
|
wrapperDir=$(mktemp --directory --tmpdir="${parentWrapperDir}" wrappers.XXXXXXXXXX)
|
|
chmod a+rx "$wrapperDir"
|
|
${lib.concatStringsSep "\n" (vmwareWrappers)}
|
|
if [ -L ${wrapperDir} ]; then
|
|
# Atomically replace the symlink
|
|
# See https://axialcorps.com/2013/07/03/atomically-replacing-files-and-directories/
|
|
old=$(readlink -f ${wrapperDir})
|
|
if [ -e "${wrapperDir}-tmp" ]; then
|
|
rm --force --recursive "${wrapperDir}-tmp"
|
|
fi
|
|
ln --symbolic --force --no-dereference "$wrapperDir" "${wrapperDir}-tmp"
|
|
mv --no-target-directory "${wrapperDir}-tmp" "${wrapperDir}"
|
|
rm --force --recursive "$old"
|
|
else
|
|
# For initial setup
|
|
ln --symbolic "$wrapperDir" "${wrapperDir}"
|
|
fi
|
|
'';
|
|
|
|
# Services
|
|
|
|
systemd.services."vmware-authdlauncher" = {
|
|
description = "VMware Authentification Daemon";
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = [ "${cfg.package}/bin/vmware-authdlauncher" ];
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
systemd.services."vmware-networks-configuration" = {
|
|
description = "VMware Networks Configuration Generation";
|
|
unitConfig.ConditionPathExists = "!/etc/vmware/networking";
|
|
serviceConfig = {
|
|
UMask = "0077";
|
|
ExecStart = [
|
|
"${cfg.package}/bin/vmware-networks --postinstall vmware-player,0,1"
|
|
];
|
|
Type = "oneshot";
|
|
RemainAfterExit = "yes";
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
systemd.services."vmware-networks" = {
|
|
description = "VMware Networks";
|
|
after = [ "vmware-networks-configuration.service" ];
|
|
requires = [ "vmware-networks-configuration.service" ];
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecCondition = [ "${pkgs.kmod}/bin/modprobe vmnet" ];
|
|
ExecStart = [ "${cfg.package}/bin/vmware-networks --start" ];
|
|
ExecStop = [ "${cfg.package}/bin/vmware-networks --stop" ];
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
systemd.services."vmware-usbarbitrator" = {
|
|
description = "VMware USB Arbitrator";
|
|
serviceConfig = {
|
|
ExecStart = [ "${cfg.package}/bin/vmware-usbarbitrator -f" ];
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
};
|
|
}
|