nix-git/modules/waydroid.nix

88 lines
3.9 KiB
Nix
Raw Normal View History

2023-09-18 21:48:05 +02:00
{ config, pkgs, ... }:
{
# Installation and Usage. https://nixos.wiki/wiki/WayDroid
#
2023-11-21 16:41:06 +01:00
# Installation:
# Initialize and fetch WayDroid images.
2023-09-18 21:48:05 +02:00
# sudo waydroid init
2023-11-21 16:41:06 +01:00
# # Alternatively, to have GApps support.
# sudo waydroid init -s GAPPS -f
# Un-root Waydroid.
# Discussion: https://github.com/waydroid/waydroid/issues/935
# Solution: https://github.com/waydroid/waydroid/issues/1060#issuecomment-1732325955 **and** https://github.com/waydroid/waydroid/issues/1060#issuecomment-1813789921
# Note: Check if `/var/lib/waydroid/waydroid_base.prop` still contains the added properties after some time.
# TODO: ARM Apps Incompatible
# https://wiki.archlinux.org/title/Waydroid#ARM_Apps_Incompatible
# https://www.reddit.com/r/NixOS/comments/15k2jxc/need_help_with_activating_libhoudini_for_waydroid/
# Startup:
2023-09-18 21:48:05 +02:00
# Start the WayDroid LXC container
# sudo systemctl start waydroid-container
2023-11-21 16:41:06 +01:00
# journalctl -b -u waydroid-container
2023-09-18 21:48:05 +02:00
# #=> Started Waydroid Container.
# Start WayDroid session
# waydroid session start
2023-11-21 16:41:06 +01:00
# # You'll know it is finished when you see the message "Android with user 0 is ready".
# Usage examples:
2023-09-18 21:48:05 +02:00
# Install and launch F-Droid
# curl -L -o ~/Downloads/F-Droid.apk https://f-droid.org/F-Droid.apk
# waydroid app install ~/Downloads/F-Droid.apk
2023-11-21 16:41:06 +01:00
# Install S-pushTAN
# # Requires Google Play services.
# # Aurora Store failed to launch ...
# # The old version installs without errors!
# waydroid app install ~/Downloads/com.starfinanz.mobile.android.pushtan_1.5.3-20033_arm64-v8a,armeabi-v7a,x86,x86_64_apkmirror.com.apk
# # The new version can't be installed without enabling ARM support ...
# # Manuall installation fails, but no error message was visible.
# waydroid app install ~/Downloads/com.starfinanz.mobile.android.pushtan_4.3.0-30106_arm64-v8a,armeabi-v7a_apkmirror.com.apk
# # Install by copying via adb did also fail.
# # https://docs.waydro.id/faq/using-adb-with-waydroid
# # Settings > About > IP
# adb connect <IP>:5555
# adb shell
# adb ls storage/emulated/0/Download/
# adb push ~/Downloads/com.starfinanz.mobile.android.pushtan_4.3.0-30106_apkmirror.com.apk storage/emulated/0/Download/pushtan.apk
# # Manually install from files app, gives error "App not installed".
# Launch some apps
# waydroid show-full-ui
# waydroid app list
2023-09-18 21:48:05 +02:00
# waydroid app launch org.fdroid.fdroid
2023-11-21 16:41:06 +01:00
# waydroid app launch com.aurora.store
# waydroid app launch com.starfinanz.mobile.android.pushtan
2023-09-18 21:48:05 +02:00
# Stop WayDroid session
# waydroid session stop
# Stop the Waydroid LXC container
# sudo systemctl stop waydroid-container
2023-11-21 16:41:06 +01:00
# Maintenance - Update Android
# sudo waydroid upgrade
# Cleanup
# https://wiki.archlinux.org/title/Waydroid#General_tips
# TODO: Webcam
# obs -> add v4l2 video captue -> log entry: info: v4l2-input: Found device 'HD Webcam: HD Webcam' at /dev/video0
# https://www.reddit.com/r/pop_os/comments/17ngh9h/how_to_make_cameravirtualcamera_working_on/
# Multiple issues, that camera does not work
# - https://github.com/waydroid/waydroid/issues/186
# - https://github.com/waydroid/waydroid/issues/170
# OBS virtual camera also doesnt work with v4l2loopback-dkms. https://github.com/waydroid/waydroid/issues/170#issuecomment-949719050#
# Some people write, that Open Camera works. https://github.com/waydroid/waydroid/issues/170#issuecomment-1237978646
# - https://github.com/waydroid/waydroid/issues/284
2023-09-18 21:48:05 +02:00
assertions = [{
assertion = config.services.xserver.displayManager.gdm.wayland;
message = "Waydroid requires Wayland.";
}];
virtualisation.waydroid.enable = true;
# Clipboard sharing. https://nixos.wiki/wiki/WayDroid#Clipboard_sharing
environment.systemPackages = with pkgs; [
wl-clipboard
];
}