aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/latex.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/latex.nix')
-rw-r--r--modules/home-manager/latex.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/home-manager/latex.nix b/modules/home-manager/latex.nix
deleted file mode 100644
index e479d78..0000000
--- a/modules/home-manager/latex.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}:
-
-{
- options.latex.enable = lib.mkEnableOption "Setup latex";
- config = lib.mkIf config.latex.enable {
- programs.texlive = {
- enable = true;
- # See https://mynixos.com/search?q=texlivepackages.collection for more collections
- # and https://mynixos.com/search?q=texlivepackages for more individual packages.
- extraPackages = tpkgs: { inherit (tpkgs) collection-basic collection-latex collection-latexrecommended biblatex; };
- };
-
- home.packages = with pkgs; [
- biber
- ];
-
- programs.pandoc = {
- enable = true;
- defaults = {
- pdf-engine = "pdfetex";
- };
- };
- };
-}