Add hunspell globaly

This commit is contained in:
Andreas Zweili 2022-09-01 09:10:56 +02:00
parent 7cf3622dd0
commit 216cd0b97b
3 changed files with 9 additions and 3 deletions

View File

@ -15,9 +15,6 @@
languagetool-server-command "${pkgs.languagetool}/share/languagetool-server.jar") languagetool-server-command "${pkgs.languagetool}/share/languagetool-server.jar")
''; '';
extraPackages = epkgs: with pkgs;[ extraPackages = epkgs: with pkgs;[
hunspell
hunspellDicts.en_GB-ise
hunspellDicts.de_CH
mu mu
languagetool languagetool
rufo # formatter for Ruby rufo # formatter for Ruby

View File

@ -1,6 +1,7 @@
{ inputs, custom, pkgs, ... }: { inputs, custom, pkgs, ... }:
{ {
imports = [ imports = [
"${inputs.self}/modules/hunspell"
"${inputs.self}/modules/nix-alien" "${inputs.self}/modules/nix-alien"
"${inputs.self}/modules/libimobiledevice" "${inputs.self}/modules/libimobiledevice"
]; ];

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hunspell
hunspellDicts.en_GB-ise
hunspellDicts.de_CH
];
}