diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-30 11:10:35 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-30 11:10:35 -0400 |
| commit | 309fa304ac7d509b7316e98b56da801876bb6a74 (patch) | |
| tree | fa6ce6ba269b586da7f99de10c5c8ba00738ef0d /features/system/gui/apps | |
| parent | 97799fa0927ca00e12f055df95fa87c71ff2e9fb (diff) | |
features: added virtualbox
Diffstat (limited to 'features/system/gui/apps')
| -rw-r--r-- | features/system/gui/apps/virtualbox.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/features/system/gui/apps/virtualbox.nix b/features/system/gui/apps/virtualbox.nix new file mode 100644 index 0000000..0b633c7 --- /dev/null +++ b/features/system/gui/apps/virtualbox.nix @@ -0,0 +1,8 @@ +{ config, lib, ... }: let + cfg = config.features.gui.apps.virtualbox; +in { + options.features.gui.apps.virtualbox.enable = lib.mkEnableOption "virtualbox"; + config = lib.mkIf cfg.enable { + virtualisation.virtualbox.host.enable = true; + }; +} |
