From c5956a8a5608d8f0868221ff66643eda33a31278 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Wed, 5 Apr 2023 20:36:05 +0700 Subject: [PATCH] hosts/hyacinth: enable waydroid --- hosts/hyacinth/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index f0f491b..c0a9921 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -43,10 +43,14 @@ enable = true; openFirewall = true; }; - virtualisation.spiceUSBRedirection.enable = true; - virtualisation.libvirtd = { - enable = true; - qemu.package = pkgs.qemu_kvm.override { smbdSupport = true; }; + virtualisation = { + lxd.enable = true; + waydroid.enable = true; + spiceUSBRedirection.enable = true; + libvirtd = { + enable = true; + qemu.package = pkgs.qemu_kvm.override { smbdSupport = true; }; + }; }; services.flatpak.enable = true; xdg.portal.enable = true;