18 lines
284 B
Nix
18 lines
284 B
Nix
#
|
|
# VMware virtualization for non-passthrough VMs.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ../overlays/fixup-vmware.nix ];
|
|
|
|
# Use VMWare, and not KVM.
|
|
virtualisation.vmware.host.enable = true;
|
|
environment.systemPackages = [
|
|
pkgs.vmware-workstation
|
|
];
|
|
|
|
}
|