[m] Migrated android to host
This commit is contained in:
17
modules/nixos/tools/develop/default.nix
Normal file
17
modules/nixos/tools/develop/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let
|
||||
android_env = pkgs.androidenv.composeAndroidPackages {
|
||||
platformVersions = [ "34" ];
|
||||
abiVersions = [ "x86" "x86_64" ];
|
||||
includeEmulator = false;
|
||||
};
|
||||
in {
|
||||
imports = [ ./vscodium ];
|
||||
|
||||
config = lib.mkIf (config.homecfg.make.develop) {
|
||||
environment.systemPackages = with pkgs; [
|
||||
android-tools
|
||||
androidStudioPackages.canary
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user