16 lines
366 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-01-19 12:22:21 +01:00
config = lib.mkIf (config.hostcfg.make.develop) {
2024-01-19 12:20:21 +01:00
environment.systemPackages = with pkgs; [
android-tools
androidStudioPackages.canary
2024-01-19 12:20:21 +01:00
];
};
}