organized some files and modularized

This commit is contained in:
Tyler Mayoff 2025-06-26 23:03:18 -04:00
parent ad9c7413a3
commit 1c9935f11c
4 changed files with 43 additions and 52 deletions

View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
android-studio
android-tools
];
programs.adb.enable = true;
services.udev.packages = [
pkgs.android-udev-rules
];
}