From 31c316d19cd974bb81a5d6de62142ff24db1c78e Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 2 Sep 2025 10:48:21 -0400 Subject: reorganized directory structure --- nixos/features/gui/apps/vmware.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nixos/features/gui/apps/vmware.nix (limited to 'nixos/features/gui/apps/vmware.nix') diff --git a/nixos/features/gui/apps/vmware.nix b/nixos/features/gui/apps/vmware.nix new file mode 100644 index 0000000..4da3f09 --- /dev/null +++ b/nixos/features/gui/apps/vmware.nix @@ -0,0 +1,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; + }; +} -- cgit v1.2.3