This commit is contained in:
2026-02-18 10:03:29 +03:00
parent 1b5e642963
commit e20bc8c042
5 changed files with 35 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "krosh" ];
virtualisation.virtualbox.host.enableExtensionPack = true;
virtualisation.virtualbox.guest.enable = true;
virtualisation.virtualbox.guest.dragAndDrop = true;
environment.systemPackages = with pkgs; [ socat ];
}