1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/configs/packages/writing.nix
2019-10-11 21:12:32 +02:00

18 lines
506 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# (texlive.combine {
# inherit (pkgs.texlive) scheme-full texdoc latex2e-help-texinfo;
# pkgFilter = pkg: pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "latex2e-help-texinfo";
# })
# haskellPackages.patat
(aspellWithDicts (dict: [dict.de dict.en dict.la dict.en-computers dict.ru]))
haskellPackages.pandoc-citeproc
libreoffice
pandoc
proselint
unstable.asciidoctor
wordnet
];
}