diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-21 15:17:26 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-21 15:17:26 +0200 |
| commit | d28c27ce67f55a4dc1e6c0cae3d1a45d5f5d339b (patch) | |
| tree | 91ce8d8572842c9878bda70626311d5a05d263d7 /flake.nix | |
| parent | b8d14bdd3fbd10c3c3837e0fdc3b39beae6f756a (diff) | |
| download | radio-d28c27ce67f55a4dc1e6c0cae3d1a45d5f5d339b.tar.zst | |
Add tex file
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 31 |
1 files changed, 30 insertions, 1 deletions
@@ -19,9 +19,38 @@ system: let pkgs = nixpkgsFor.${system}; + mytex = pkgs.texliveMedium.withPackages (ps: [ + ps.adjustbox + ps.alphalph + ps.changepage + ps.enumitem + ps.etoc + ps.fontaxes + ps.hanging + ps.ltablex + ps.multirow + ps.newunicodechar + ps.ninecolors + ps.roboto + ps.sectsty + ps.stackengine + ps.svg + ps.tabularray + ps.tocloft + ps.transparent + ps.varwidth + ps.xltabular + ]); in { - default = pkgs.mkShell { buildInputs = with pkgs; [ biome ]; }; + default = pkgs.mkShell { + buildInputs = with pkgs; [ + html-tidy + biome + gnumake + mytex + ]; + }; } ); }; |
