mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-22 13:48:37 +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"
|
||
|
'';
|
||
|
};
|
||
|
}
|