From 16ceef0c36c5cbdae3147271f6d6c768228e32e1 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Fri, 26 Sep 2025 14:20:59 -0600 Subject: [PATCH] sys: add android-tools to android module --- sys/modules/android.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/modules/android.nix b/sys/modules/android.nix index 57c1964..2fad4c1 100644 --- a/sys/modules/android.nix +++ b/sys/modules/android.nix @@ -14,5 +14,9 @@ in { services.udev.packages = with pkgs; [ android-udev-rules ]; + + environment.systemPackages = with pkgs; [ + android-tools + ]; }; }