[m] Migrated android to host

This commit is contained in:
soraefir 2024-01-19 12:20:21 +01:00
parent 81be322a80
commit 1b4f5090cf
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
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 ];
};
}

View File

@ -1 +1 @@
{ ... }: { imports = [ ./debug ./devel ]; }
{ ... }: { imports = [ ./debug ./develop ]; }

View File

@ -1,4 +0,0 @@
{ ... }:
{
}

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