all repos — nixfiles @ 8604302bf1e66b6d61a15717dc3d498de1c7ca22

System and user configuration, managed by nix and home-manager

aspell: move to common user setup
Alan Pearce alan@alanpearce.eu
Mon, 06 Mar 2023 18:55:12 +0100
commit

8604302bf1e66b6d61a15717dc3d498de1c7ca22

parent

ab469de1f85c62c998505b74acb7ac2f40bfa38b

3 files changed, 2 insertions(+), 4 deletions(-)

jump to
M system/settings/user-interface.nixsystem/settings/user-interface.nix
@@ -23,9 +23,6 @@ lxtask 
     mpv
 
-    aspell
-    aspellDicts.en
-
     cifs-utils
 
     trash-cli
M user/settings/base.nixuser/settings/base.nix
@@ -75,6 +75,7 @@ tree       abduco
       dvtm
       vimv
+      (aspellWithDicts (d: [ d.en d.en-computers d.en-science d.de ]))
     ]
     ++ (
       if !stdenv.isDarwin
M user/settings/darwin.nixuser/settings/darwin.nix
@@ -36,7 +36,7 @@ EOF         '';
     })
   ];
-  home.packages = with pkgs; [aspell aspellDicts.en darwin-zsh-completions];
+  home.packages = with pkgs; [darwin-zsh-completions];
 
   programs.emacs.package = pkgs.emacs;