1
0
mirror of https://github.com/kmein/niveum synced 2026-03-20 20:01:08 +01:00
Files
niveum/configs/packages/writing.nix

15 lines
314 B
Nix
Raw Normal View History

2019-08-18 11:17:28 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
(aspellWithDicts (dict: [dict.de dict.en dict.en-computers]))
unstable.haskellPackages.pandoc-citeproc
2019-11-24 10:40:32 +01:00
text2pdf
2019-08-18 11:17:28 +02:00
libreoffice
unstable.pandoc
# proselint
2019-08-18 11:17:28 +02:00
unstable.asciidoctor
wordnet
];
}