mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
name = "anbox";
|
||
|
meta.maintainers = with lib.maintainers; [ mvnetbiz ];
|
||
|
|
||
|
nodes.machine = { pkgs, config, ... }: {
|
||
|
imports = [
|
||
|
./common/user-account.nix
|
||
|
./common/x11.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [ android-tools ];
|
||
|
|
||
|
test-support.displayManager.auto.user = "alice";
|
||
|
|
||
|
virtualisation.anbox.enable = true;
|
||
|
boot.kernelPackages = pkgs.linuxPackages_5_15;
|
||
|
|
||
|
# The AArch64 anbox image will not start.
|
||
|
# Meanwhile the postmarketOS images work just fine.
|
||
|
virtualisation.anbox.image = pkgs.anbox.postmarketos-image;
|
||
|
virtualisation.memorySize = 2500;
|
||
|
};
|
||
|
|
||
|
testScript = { nodes, ... }: let
|
||
|
user = nodes.machine.users.users.alice;
|
||
|
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${toString user.uid}/bus";
|
||
|
in ''
|
||
|
machine.wait_for_x()
|
||
|
|
||
|
machine.wait_until_succeeds(
|
||
|
"sudo -iu alice ${bus} anbox wait-ready"
|
||
|
)
|
||
|
|
||
|
machine.wait_until_succeeds("adb shell true")
|
||
|
|
||
|
print(machine.succeed("adb devices"))
|
||
|
'';
|
||
|
}
|