This file contains hidden or 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
| # 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.python311 | |
| pkgs.python311Packages.pip | |
| ]; |