[m] Android dev, cleanup, qemu,...

This commit is contained in:
soraefir
2024-01-19 11:58:52 +01:00
parent 0486df012d
commit 81be322a80
9 changed files with 40 additions and 21 deletions

View File

@ -1,14 +1,19 @@
{ lib, config, pkgs, ... }: {
imports = [ ./vscodium ];
{ 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) {
home.packages = with pkgs; [
blender
godot_4
androidStudioPackages.canary
blender
godot_4
android-tools
androidStudioPackages.canary
];
};
}