about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-22 17:28:50 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-22 17:28:50 -0800
commitcac007fd19b94968a261e6322a8d27ea8691e4a9 (patch)
tree2cc64f684965c3472e0b1d1b0d79592db7b1792b /users
parentdev: a few more packages to install (diff)
downloadworld-cac007fd19b94968a261e6322a8d27ea8691e4a9.tar.gz
emacs: install aspell correctly
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/desktop/emacs.nix6
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 ]))
   ];
 }