-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
747e7a4
commit 5f12e14
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
gc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# To learn more about how to use Nix to configure your environment | ||
# see: https://developers.google.com/idx/guides/customize-idx-env | ||
{ pkgs, ... }: { | ||
channel = "stable-23.11"; # "stable-23.11" or "unstable" | ||
# Use https://search.nixos.org/packages to find packages | ||
packages = [ | ||
pkgs.nodejs | ||
pkgs.nodePackages.firebase-tools | ||
pkgs.python3 | ||
]; | ||
# Sets environment variables in the workspace | ||
env = { }; | ||
# search for the extension on https://open-vsx.org/ and use "publisher.id" | ||
idx.extensions = [ | ||
# "vscodevim.vim" | ||
]; | ||
# preview configuration | ||
idx.previews = { | ||
enable = true; | ||
previews = [ | ||
{ | ||
command = ["python3" "-m" "http.server" "$PORT" "--bind" "0.0.0.0"]; | ||
manager = "web"; | ||
id = "web"; | ||
} | ||
{ | ||
manager = "ios"; | ||
id = "ios"; | ||
} | ||
]; | ||
}; | ||
} |