[m] Migrated android to host

This commit is contained in:
soraefir
2024-01-19 12:20:21 +01:00
parent 81be322a80
commit 1b4f5090cf
4 changed files with 20 additions and 19 deletions

View 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
];
};
}