From 29ebb90878cf4ae4f213597986bf2bc5cf1f7c6f Mon Sep 17 00:00:00 2001 From: 0xrsydn Date: Thu, 9 Oct 2025 11:54:26 +0700 Subject: [PATCH] fix --- devshells/ml-ai.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/devshells/ml-ai.nix b/devshells/ml-ai.nix index aef7aa8..4e31ebd 100644 --- a/devshells/ml-ai.nix +++ b/devshells/ml-ai.nix @@ -5,13 +5,7 @@ let pythonWithHF = python.withPackages (ps: [ ps.huggingface-hub ]); in pkgs.mkShell { name = "ml-ai"; - packages = with pkgs; [ - pythonWithHF - uv - git-lfs - ruff - pyright - ]; + packages = with pkgs; [ pythonWithHF uv git-lfs ruff pyright ]; shellHook = '' # Set up UV export UV_PYTHON="${pythonWithHF}/bin/python3"