From e6baa6fa2cc1c1204058aed1c883e222acb482ae Mon Sep 17 00:00:00 2001 From: Mohamed Ashraf <55748253+dager-mohamed@users.noreply.github.com> Date: Wed, 28 Aug 2024 11:22:25 +0300 Subject: [PATCH] chore: add IDX configuration so anyone can edit the project from idx.google.com (#5398) * chore: add IDX configuration so anyone can edit the project from idx.google.com * chore: add python, postgres and redis to the idx config --- .idx/dev.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .idx/dev.nix diff --git a/.idx/dev.nix b/.idx/dev.nix new file mode 100644 index 000000000..f150f679a --- /dev/null +++ b/.idx/dev.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: { + + # Which nixpkgs channel to use. + channel = "stable-23.11"; # or "unstable" + + # Use https://search.nixos.org/packages to find packages + packages = [ + pkgs.nodejs_20 + pkgs.python3 + ]; + + services.docker.enable = true; + services.postgres.enable = true; + services.redis.enable = true; + +} \ No newline at end of file