From d58c8c9cb0356ff0e467bc0743e4ba0e1eb7223f Mon Sep 17 00:00:00 2001 From: Haf Date: Sat, 16 Nov 2024 12:26:05 +0100 Subject: [PATCH] feat: dictionaries for latex --- latex/flake.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/latex/flake.nix b/latex/flake.nix index c9bc417..fe85da2 100644 --- a/latex/flake.nix +++ b/latex/flake.nix @@ -18,7 +18,17 @@ in { - devShell = with pkgs; mkShell { buildInputs = [ texlive.combined.scheme-full ]; }; + devShell = + with pkgs; + mkShell { + buildInputs = [ + texlive.combined.scheme-full + (aspellWithDicts (ps: [ + ps.es + ps.en + ])) + ]; + }; } ); }