diff --git a/nixos/modules/programs/virtualbox-host.nix b/nixos/modules/programs/virtualbox-host.nix index c0cf49e2aac..9b0446c1047 100644 --- a/nixos/modules/programs/virtualbox-host.nix +++ b/nixos/modules/programs/virtualbox-host.nix @@ -12,7 +12,18 @@ in { options.services.virtualboxHost = { - enable = mkEnableOption "VirtualBox Host support"; + enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to enable host-side support for VirtualBox. + + + In order to pass USB devices from the host to the guests, the user + needs to be in the vboxusers group. + + ''; + }; addNetworkInterface = mkOption { type = types.bool;