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
This commit is contained in:
Diego Alvarez 2020-12-02 15:39:57 -08:00 committed by GitHub
parent d88e0795b6
commit 719147cf8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,10 +70,7 @@ with anything other than =aspell= yet.
#+BEGIN_SRC nix #+BEGIN_SRC nix
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
aspell (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
]; ];
} }
#+END_SRC #+END_SRC