summaryrefslogtreecommitdiff
path: root/features/system/gui/apps/vmware.nix
blob: 4da3f096401cf26e7912ef277e66cd30a29d097e (plain)
1
2
3
4
5
6
7
8
{ config, lib, ... }: let
  cfg = config.features.gui.apps.vmware;
in {
  options.features.gui.apps.vmware.enable = lib.mkEnableOption "vmware";
  config = lib.mkIf cfg.enable {
    virtualisation.vmware.host.enable = true;
  };
}