Skip to content

Commit

Permalink
Merge pull request #141076 from CajuM/waydroid-module
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Nov 7, 2021
2 parents c935f5e + 7e76b12 commit 83c93c8
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/module-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,7 @@
./virtualisation/virtualbox-guest.nix
./virtualisation/virtualbox-host.nix
./virtualisation/vmware-guest.nix
./virtualisation/waydroid.nix
./virtualisation/xen-dom0.nix
./virtualisation/xe-guest-utilities.nix
]
66 changes: 66 additions & 0 deletions nixos/modules/virtualisation/waydroid.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{ config, lib, pkgs, ... }:

with lib;

let

cfg = config.virtualisation.waydroid;
kernelPackages = config.boot.kernelPackages;
waydroidGbinderConf = pkgs.writeText "waydroid.conf" ''
[Protocol]
/dev/binder = aidl2
/dev/vndbinder = aidl2
/dev/hwbinder = hidl
[ServiceManager]
/dev/binder = aidl2
/dev/vndbinder = aidl2
/dev/hwbinder = hidl
'';

in {

options.virtualisation.waydroid = {
enable = mkEnableOption "Waydroid";
};

config = mkIf cfg.enable {
assertions = singleton {
assertion = versionAtLeast (getVersion config.boot.kernelPackages.kernel) "4.18";
message = "Waydroid needs user namespace support to work properly";
};

system.requiredKernelConfig = with config.lib.kernelConfig; [
(isEnabled "ANDROID_BINDER_IPC")
(isEnabled "ANDROID_BINDERFS")
(isEnabled "ASHMEM")
];

environment.etc."gbinder.d/waydroid.conf".source = waydroidGbinderConf;

environment.systemPackages = with pkgs; [ waydroid ];

networking.firewall.trustedInterfaces = [ "waydroid0" ];

virtualisation.lxc.enable = true;

systemd.services.waydroid-container = {
description = "Waydroid Container";

wantedBy = [ "multi-user.target" ];

path = with pkgs; [ getent iptables iproute kmod nftables util-linux which ];

unitConfig = {
ConditionPathExists = "/var/lib/waydroid/lxc/waydroid";
};

serviceConfig = {
ExecStart = "${pkgs.waydroid}/bin/waydroid container start";
ExecStop = "${pkgs.waydroid}/bin/waydroid container stop";
ExecStopPost = "${pkgs.waydroid}/bin/waydroid session stop";
};
};
};

}

0 comments on commit 83c93c8

Please sign in to comment.