1
0
forked from extern/nix-config
donovanglover-nix-config/modules/vmware.nix

11 lines
238 B
Nix
Raw Normal View History

{
virtualisation.vmware.host = {
enable = true;
extraConfig = /* config */ ''
# Enable 3D acceleration on the host
mks.gl.allowUnsupportedDrivers = "TRUE"
mks.vk.allowUnsupportedDevices = "TRUE"
'';
};
}