diff options
author | Adrian Kummerlaender | 2021-01-31 22:47:53 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2021-01-31 22:47:53 +0100 |
commit | da99105b964d0ef1b55ea768d61978b3d8a61605 (patch) | |
tree | 1cb66362358087252d6e59f9490a7e8f59138c04 /gui | |
parent | 4127c350398b75e9cb1ed5ae1ce4d73bb0044694 (diff) | |
download | nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar.gz nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar.bz2 nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar.lz nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar.xz nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.tar.zst nixos_home-da99105b964d0ef1b55ea768d61978b3d8a61605.zip |
Fix inclusion of pandoc into the emacs environment
This ought to be easier
Diffstat (limited to 'gui')
-rw-r--r-- | gui/emacs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/emacs.nix b/gui/emacs.nix index 869ce86..2e7fc14 100644 --- a/gui/emacs.nix +++ b/gui/emacs.nix @@ -28,7 +28,7 @@ in { name = "custom-runtime-env.el"; text = '' (setenv "PATH" (concat (getenv "PATH") - ":${tex}/bin")) + ":${tex}/bin:${pkgs.pandoc}/bin")) (add-to-list 'exec-path "${tex}/bin") (add-to-list 'exec-path "${pkgs.graphviz}/bin") (add-to-list 'exec-path "${pkgs.sqlite}/bin") |