From 30ef2e6bc6909d454922d89d14ff1968bbe2f01f Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Thu, 22 May 2025 19:51:16 +0530 Subject: [PATCH] feat: only enable podman --- hosts/default/virtualization.nix | 47 ++++++++++++++++---------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/hosts/default/virtualization.nix b/hosts/default/virtualization.nix index 6afe040..3210f62 100644 --- a/hosts/default/virtualization.nix +++ b/hosts/default/virtualization.nix @@ -1,29 +1,30 @@ { pkgs, ... }: { - virtualisation = { - libvirtd = { - enable = true; - qemu = { - package = pkgs.qemu_kvm; - runAsRoot = true; - swtpm.enable = true; - ovmf = { - enable = true; - packages = [ - (pkgs.OVMF.override { - secureBoot = true; - tpmSupport = true; - }).fd - ]; - }; - }; + # virtualisation = { + # libvirtd = { + # enable = true; + # qemu = { + # package = pkgs.qemu_kvm; + # runAsRoot = true; + # swtpm.enable = true; + # ovmf = { + # enable = true; + # packages = [ + # (pkgs.OVMF.override { + # secureBoot = true; + # tpmSupport = true; + # }).fd + # ]; + # }; + # }; - }; - spiceUSBRedirection.enable = true; - }; - environment.systemPackages = [ - pkgs.gnome-boxes - ]; + # }; + # spiceUSBRedirection.enable = true; + # }; + # environment.systemPackages = [ + # pkgs.gnome-boxes + # ]; virtualisation.podman.enable = true; + # virtualisation.waydroid.enable = true; }