From a31d587568e5e3a7fe77933cb293a018cc75daed Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 5 May 2025 16:45:12 +0200 Subject: [PATCH] feat: adds virt-manager and qemu since sometimes vmware isn't enough (and vmware doesn't even work) --- modules/core/virtualization.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/core/virtualization.nix b/modules/core/virtualization.nix index b5e7cee..eeca5d6 100644 --- a/modules/core/virtualization.nix +++ b/modules/core/virtualization.nix @@ -1,7 +1,17 @@ +{ pkgs, ... }: { - # Causes issues for now :p virtualisation = { - # vmware.host.enable = true; + # vmware.host.enable = true; # Causes issues for now :p waydroid.enable = true; + libvirtd.enable = true; + spiceUSBRedirection.enable = true; }; + + programs.virt-manager.enable = true; + + # Enable qemu etc + environment.systemPackages = with pkgs; [ + qemu + quickemu + ]; }