16 lines
369 B
Nix
Raw Normal View History

2024-01-19 12:20:21 +01:00
{ lib, config, pkgs, ... }:
let
android_env = pkgs.androidenv.composeAndroidPackages {
platformVersions = [ "34" ];
abiVersions = [ "x86" "x86_64" ];
includeEmulator = false;
};
in {
2024-04-14 07:57:07 +02:00
config = lib.mkIf (config.syscfg.make.develop) {
2024-01-19 12:20:21 +01:00
environment.systemPackages = with pkgs; [
2024-11-21 01:21:48 +01:00
# android-tools
# androidStudioPackages.canary
2024-01-19 12:20:21 +01:00
];
};
}