From 9ba5a94c84f71fed59a9e8be63c8f93b1a582801 Mon Sep 17 00:00:00 2001 From: yadokani389 Date: Sat, 25 Apr 2026 15:23:15 +0900 Subject: [PATCH] fix: use cspell package in devShell --- 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 ];