nixos/virtualbox: Note about "vboxusers" group.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-12-15 07:33:56 +01:00
parent a199eedfce
commit 245baeb2f6
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -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.
<note><para>
In order to pass USB devices from the host to the guests, the user
needs to be in the <literal>vboxusers</literal> group.
</para></note>
'';
};
addNetworkInterface = mkOption {
type = types.bool;