From 3003a68e399d75d8563d0e769ff98b4017b11cae Mon Sep 17 00:00:00 2001 From: Jeffrey Hales Date: Wed, 10 Jun 2026 01:27:23 -0700 Subject: [PATCH] feat(dev): add ai coding tools python3 and fd --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index fd01103..4fa66d1 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,11 @@ devShells = forEachSupportedSystem ({ pkgs }: { default = pkgs.mkShell { - packages = with pkgs; [ node2nix nodejs nodePackages.pnpm yarn ]; + packages = with pkgs; [ + node2nix nodejs nodePackages.pnpm yarn + python3 + fd + ]; }; }); };