Update ~8/26/24

This commit is contained in:
2024-08-29 18:54:36 +09:00
parent eebaa957af
commit 02ded93d14
19 changed files with 120 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{ pkgs, ... }:
let
mytex = pkgs.texliveMedium.withPackages
(ps: [
ps.biber
ps.biblatex
ps.bibtex
ps.import
ps.subfiles
ps.wrapfig
ps.collection-langjapanese
]);
in
{
home.packages = with pkgs; [
mytex
pandoc
qpdf
];
}