diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-11 09:49:36 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-11 09:49:36 +0100 |
| commit | cdb177792a74856849149524dc31ff43bc2b650e (patch) | |
| tree | caffac6964cd10aa57f11e444937b49492cce5c0 /.nix | |
| parent | debb75b90b5b37114e1282caa540790c5ac70638 (diff) | |
| download | phd-fluid_mechanics_report-cdb177792a74856849149524dc31ff43bc2b650e.tar.gz | |
Changed structure a bit and added some ignores
Diffstat (limited to '.nix')
| -rw-r--r-- | .nix/derivation.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 5a1f1db..3be1695 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -1,6 +1,7 @@ { lib , stdenv , typst +, typstPackages }: stdenv.mkDerivation { @@ -11,7 +12,9 @@ stdenv.mkDerivation { nativeBuildInputs = [ typst - ]; + ] ++ (with typstPackages; [ + charged-ieee + ]); buildPhase = '' typst compile report.typ out.pdf |
