mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 10:13:25 +01:00
11 lines
238 B
Nix
11 lines
238 B
Nix
{
|
|
virtualisation.vmware.host = {
|
|
enable = true;
|
|
extraConfig = /* config */ ''
|
|
# Enable 3D acceleration on the host
|
|
mks.gl.allowUnsupportedDrivers = "TRUE"
|
|
mks.vk.allowUnsupportedDevices = "TRUE"
|
|
'';
|
|
};
|
|
}
|