diff options
| author | max2323madcity <[email protected]> | 2024-11-22 01:38:09 +0000 |
|---|---|---|
| committer | max2323madcity <[email protected]> | 2024-11-22 01:38:09 +0000 |
| commit | 5229195381f1b2f686b4bd48a7410b5c9b456729 (patch) | |
| tree | 74025f716d80f7ab5c664cd5c9801e7d10de0768 | |
| parent | 7f42acd2af8e70728bab7e3b3eaf1f217c8c8646 (diff) | |
| download | yuzaki-5229195381f1b2f686b4bd48a7410b5c9b456729.tar.xz yuzaki-5229195381f1b2f686b4bd48a7410b5c9b456729.zip | |
idx
| -rw-r--r-- | .idx/dev.nix | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/.idx/dev.nix b/.idx/dev.nix deleted file mode 100644 index f1d9895..0000000 --- a/.idx/dev.nix +++ /dev/null @@ -1,56 +0,0 @@ -# To learn more about how to use Nix to configure your environment -# see: https://developers.google.com/idx/guides/customize-idx-env -{ pkgs, ... }: { - # Which nixpkgs channel to use. - channel = "stable-24.05"; # or "unstable" - - # Use https://search.nixos.org/packages to find packages - packages = [ - pkgs.go - pkgs.gnumake - # pkgs.python311 - # pkgs.python311Packages.pip - # pkgs.nodejs_20 - # pkgs.nodePackages.nodemon - ]; - - # Sets environment variables in the workspace - env = {}; - idx = { - # Search for the extensions you want on https://open-vsx.org/ and use "publisher.id" - extensions = [ - # "vscodevim.vim" - ]; - - # Enable previews - previews = { - enable = true; - previews = { - # web = { - # # Example: run "npm run dev" with PORT set to IDX's defined port for previews, - # # and show it in IDX's web preview panel - # command = ["npm" "run" "dev"]; - # manager = "web"; - # env = { - # # Environment variables to set for your server - # PORT = "$PORT"; - # }; - # }; - }; - }; - - # Workspace lifecycle hooks - workspace = { - # Runs when a workspace is first created - onCreate = { - # Example: install JS dependencies from NPM - # npm-install = "npm install"; - }; - # Runs when the workspace is (re)started - onStart = { - # Example: start a background task to watch and re-build backend code - # watch-backend = "npm run watch-backend"; - }; - }; - }; -} |
