Use devenv instead of flake

This commit is contained in:
2025-05-24 13:42:30 +02:00
parent 752cab0979
commit 9efdac5f31
12 changed files with 202 additions and 147 deletions

37
devenv.nix Normal file
View File

@@ -0,0 +1,37 @@
{
pkgs,
lib,
config,
inputs,
...
}:
{
android = {
enable = true;
emulator.enable = false;
flutter.enable = true;
buildTools.version = [
"34.0.0"
"33.0.1"
];
platforms.version = [
"27"
"28"
"29"
"30"
"31"
"32"
"33"
"34"
"35"
];
ndk.enable = true;
ndk.version = [
"25.1.8937393"
"26.3.11579264"
"27.2.12479018"
];
};
}