From 88848932fc56f4f63344da6c4ade633463860d7b Mon Sep 17 00:00:00 2001 From: yadokani389 <155296849+yadokani389@users.noreply.github.com> Date: Sun, 26 Apr 2026 16:27:21 +0900 Subject: [PATCH] fix: use cspell package in devShell (#3912) --- nix/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/shell.nix b/nix/shell.nix index 3207d8e3..f524ae80 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -2,7 +2,7 @@ mkShell, yazi, toolchain, - nodePackages, + cspell, yazi-unwrapped, }: @@ -16,7 +16,7 @@ mkShell { "clippy" ]; }) - nodePackages.cspell + cspell ]; inputsFrom = [ yazi-unwrapped ];