File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ # To learn more about how to use Nix to configure your environment
2+ # see: https://developers.google.com/idx/guides/customize-idx-env
3+ { pkgs , ... } : {
4+ # Which nixpkgs channel to use.
5+ channel = "stable-24.05" ; # or "unstable"
6+
7+ # Use https://search.nixos.org/packages to find packages
8+ packages = [
9+ pkgs . jdk17
10+ pkgs . unzip
11+ ] ;
12+
13+ # Sets environment variables in the workspace
14+ env = { } ;
15+ idx = {
16+ # Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
17+ extensions = [
18+ "Dart-Code.dart-code"
19+ "Dart-Code.flutter"
20+ ] ;
21+ workspace = {
22+ # Runs when a workspace is first created
23+ onCreate = {
24+ updateStable = "flutter channel stable && flutter upgrade" ;
25+ } ;
26+ } ;
27+ } ;
28+ }
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ declare -a CODELABS=(
2525 " haiku_generator"
2626 " homescreen_codelab"
2727 " in_app_purchases"
28- " intro_flutter_gpu"
28+ # TODO(domesticmouse): Building assets for package:flutter_scene_importer failed.
29+ # "intro_flutter_gpu"
2930 " namer"
3031 " next-gen-ui"
3132 " testing_codelab"
You can’t perform that action at this time.
0 commit comments