[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

@ -1,19 +1,7 @@
{ lib, config, pkgs, ... }:
let
android_env = pkgs.androidenv.composeAndroidPackages {
platformVersions = [ "34" ];
abiVersions = [ "x86" "x86_64" ];
includeEmulator = false;
};
in {
{ lib, config, pkgs, ... }: {
imports = [ ./vscodium ];
config = lib.mkIf (config.homecfg.make.develop) {
home.packages = with pkgs; [
blender
godot_4
android-tools
androidStudioPackages.canary
];
home.packages = with pkgs; [ blender godot_4 ];
};
}