From 719147cf8dd58d192c26d8929fcb931b45118dba Mon Sep 17 00:00:00 2001 From: Diego Alvarez Date: Wed, 2 Dec 2020 15:39:57 -0800 Subject: [PATCH] fix nix aspell installation instructions The original instruction made nix install the language packages in different directories than the `aspell` package. Use solution provided here https://github.com/hlissner/doom-emacs/issues/4138#issuecomment-717266771 closes https://github.com/hlissner/doom-emacs/issues/4138 --- modules/checkers/spell/README.org | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/checkers/spell/README.org b/modules/checkers/spell/README.org index aacce60b2..93fb7e483 100644 --- a/modules/checkers/spell/README.org +++ b/modules/checkers/spell/README.org @@ -70,10 +70,7 @@ with anything other than =aspell= yet. #+BEGIN_SRC nix { environment.systemPackages = with pkgs; [ - aspell - aspellDicts.en - aspellDicts.en-computers - aspellDicts.en-science + (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ])) ]; } #+END_SRC