summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
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
+ ];
+ };
}
);
};