diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-22 17:28:50 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-22 17:28:50 -0800 |
commit | cac007fd19b94968a261e6322a8d27ea8691e4a9 (patch) | |
tree | 2cc64f684965c3472e0b1d1b0d79592db7b1792b /users | |
parent | dev: a few more packages to install (diff) | |
download | world-cac007fd19b94968a261e6322a8d27ea8691e4a9.tar.gz |
emacs: install aspell correctly
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/emacs.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/users/fcuny/desktop/emacs.nix b/users/fcuny/desktop/emacs.nix index ac72278..6c2f42c 100644 --- a/users/fcuny/desktop/emacs.nix +++ b/users/fcuny/desktop/emacs.nix @@ -3,9 +3,7 @@ { home.packages = with pkgs; [ emacsPgtkGcc - aspell - aspellDicts.en - aspellDicts.en-science - aspellDicts.en-computers + # see https://github.com/hlissner/doom-emacs/issues/4138 + (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ])) ]; } |