summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2026-01-21 15:17:26 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2026-01-21 15:17:26 +0200
commitd28c27ce67f55a4dc1e6c0cae3d1a45d5f5d339b (patch)
tree91ce8d8572842c9878bda70626311d5a05d263d7 /flake.nix
parentb8d14bdd3fbd10c3c3837e0fdc3b39beae6f756a (diff)
downloadradio-d28c27ce67f55a4dc1e6c0cae3d1a45d5f5d339b.tar.zst
Add tex file
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix31
1 files changed, 30 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 20ddff5..9ee2316 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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
+ ];
+ };
}
);
};