From 4e7029da24c66dea7f1b69623f42cd062d734949 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 6 Oct 2025 15:42:38 -0400 Subject: [PATCH] vbox --- hosts/common/optional/vbox.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/hosts/common/optional/vbox.nix b/hosts/common/optional/vbox.nix index e31220a..d643606 100644 --- a/hosts/common/optional/vbox.nix +++ b/hosts/common/optional/vbox.nix @@ -1,6 +1,14 @@ { - virtualisation.virtualbox.host = { - enable = true; - addNetworkInterface = true; + virtualisation.virtualbox = { + host = { + enable = true; + addNetworkInterface = true; + }; + guest = { + enable = true; + vboxsf = true; + dragAndDrop = true; + clipboard = true; + }; }; }