diff --git a/host/desktop/default.nix b/host/desktop/default.nix index 47c867a..1cb988a 100644 --- a/host/desktop/default.nix +++ b/host/desktop/default.nix @@ -6,6 +6,7 @@ (libs.root "/modules/fonts.nix") (libs.root "/modules/features/system/packages.nix") + (libs.root "/modules/features/system/waydroid.nix") (libs.root "/modules/features/system/boot.nix") (libs.root "/modules/features/system/sddm.nix") (libs.root "/modules/features/system/gdm.nix") diff --git a/modules/features/system/waydroid.nix b/modules/features/system/waydroid.nix new file mode 100644 index 0000000..3c3f460 --- /dev/null +++ b/modules/features/system/waydroid.nix @@ -0,0 +1,10 @@ +{ pkgs, lib, config, ... }: { + virtualisation.waydroid = { + enable = true; + package = pkgs.waydroid-nftables; + }; + + environment.systemPackages = lib.mkOptionals config.virtualisation.waydroid.enable [ + waydroid-helper + ]; +} \ No newline at end of file