1
0
mirror of https://github.com/kmein/niveum synced 2026-03-28 23:31:07 +01:00

reorganize packages

This commit is contained in:
Kierán Meinhardt
2019-08-18 11:17:28 +02:00
parent a1aa8f0949
commit 9d21920085
5 changed files with 177 additions and 156 deletions

View File

@@ -0,0 +1,17 @@
{ 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
];
}