1
0
forked from extern/nix-config
donovanglover-nix-config/modules/vmware.nix
2023-06-18 15:52:03 -04:00

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"
'';
};
}