mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
14 lines
315 B
Nix
14 lines
315 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
texlive.combined.scheme-full
|
|
(aspellWithDicts (dict: [dict.de dict.en dict.la dict.en-computers dict.ru]))
|
|
unstable.haskellPackages.pandoc-citeproc
|
|
libreoffice
|
|
unstable.pandoc
|
|
proselint
|
|
unstable.asciidoctor
|
|
wordnet
|
|
];
|
|
}
|