diff options
| author | anand <anand.panchdhari@gmail.com> | 2025-12-21 14:21:10 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2025-12-21 14:21:10 +0530 |
| commit | 1902a372eeb4b800b35c8f47cb28edfe507e0508 (patch) | |
| tree | 38957ce4a86880fa9985ee9c69d3ed210c798259 /modules/android.nix | |
| parent | 9c25787d48967577acd9c83a4fb662c49eb25bee (diff) | |
Moved some things to nix shell flakes
Diffstat (limited to 'modules/android.nix')
| -rw-r--r-- | modules/android.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/android.nix b/modules/android.nix deleted file mode 100644 index ff745e2..0000000 --- a/modules/android.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, pkgs, ... }: -{ - #### SYSTEM (NixOS) #### - - programs.adb.enable = true; - - nixpkgs.config.android_sdk.accept_license = true; - - users.users.anand.extraGroups = [ "adbusers" ]; - - environment.variables = { - ANDROID_SDK_ROOT = "/home/anand/.android-sdk/libexec/android-sdk"; - ANDROID_HOME = "/home/anand/.android-sdk/libexec/android-sdk"; - }; - - home-manager.users.anand = - { pkgs, ... }: - { - home.packages = [ - pkgs.flutter - pkgs.android-tools - ]; - }; -} |
