From a9b38d8515296dc864dcd290ebd0d9b27f8db676 Mon Sep 17 00:00:00 2001 From: awkawb Date: Sat, 10 Feb 2024 11:04:52 -0500 Subject: [PATCH] ADDED markdown viewer and python-dotenv to shell --- shell.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shell.nix b/shell.nix index 5c95e95..da8263e 100644 --- a/shell.nix +++ b/shell.nix @@ -4,8 +4,14 @@ with pkgs; pkgs.mkShell { nativeBuildInputs = [ + inlyne # markdown viewer + # Python development environment (python3.withPackages(ps: with ps; [ + # For SDK configuration + python-dotenv + + # HTTP client requests ])) ];