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