Add virutalbox

This commit is contained in:
Greg Hellings
2022-06-02 09:34:37 -05:00
parent 36f5000e3c
commit 6c87da8ce5
+12 -6
View File
@@ -12,14 +12,20 @@
# Give my user access to the libvirtd process # Give my user access to the libvirtd process
users.users.greg.extraGroups = [ "libvirtd" ]; users.users.greg.extraGroups = [ "libvirtd" ];
virtualisation.libvirtd = { virtualisation = {
enable = true; libvirtd = {
onBoot = "ignore"; # Do not auto-restart VMs on boot, unless they are marked autostart enable = true;
onBoot = "ignore"; # Do not auto-restart VMs on boot, unless they are marked autostart
};
waydroid = {
enable = true;
};
virtualbox.host.enable = true;
}; };
virtualisation.waydroid = { users.extraGroups.vboxusers.members = [ "greg" ];
enable = true;
};
boot.extraModprobeConfig = "options kvm_amd nested=1"; boot.extraModprobeConfig = "options kvm_amd nested=1";
} }