feat(nix-on-droid): enanle android integration

Most notably: `am`, `termux-open`/`xdg-open`
This commit is contained in:
reo101 2024-07-25 02:08:32 +03:00
parent 91f0deb3bc
commit bdeb0ae13b
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

@ -0,0 +1,13 @@
{ lib, pkgs, config, ... }:
{
android-integration = {
am.enable = true;
termux-open.enable = true;
termux-open-url.enable = true;
termux-reload-settings.enable = true;
termux-wake-unlock.enable = true;
unsupported.enable = true;
xdg-open.enable = true;
};
}