aboutsummaryrefslogtreecommitdiff
path: root/home-manager/emacs
diff options
context:
space:
mode:
authorDylan <boss@tehbox.org>2026-04-29 23:15:45 +1200
committerDylan <boss@tehbox.org>2026-04-29 23:19:15 +1200
commitf96e43f992211290e3287facc505bea0bc1a3931 (patch)
tree02860a965002f0418847cedad2fac2e71208b443 /home-manager/emacs
parentda3a4174ae0a287871e36899893abe9c858ad7e5 (diff)
downloadnixos-configuration-master.tar.gz
nixos-configuration-master.zip
feat: Nix version bump + other updatesHEADmaster
Lots of updates
Diffstat (limited to 'home-manager/emacs')
-rw-r--r--home-manager/emacs/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/home-manager/emacs/default.nix b/home-manager/emacs/default.nix
index 746e084..6bb1dc6 100644
--- a/home-manager/emacs/default.nix
+++ b/home-manager/emacs/default.nix
@@ -3,8 +3,10 @@ let
tex = (pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-medium
dvisvgm dvipng # for preview and export as html
+ # svg transparent
etoolbox
subfiles
+ enumitem
wrapfig amsmath ulem hyperref capt-of;
});
myEmacs = (pkgs.emacsPackagesFor pkgs.emacs30).emacsWithPackages (epkgs: with epkgs; [
@@ -23,9 +25,10 @@ in
emacsPackages.mu4e
isync
ispell
- poppler_utils
+ poppler-utils
tex
ghostscript
+ haskell-language-server
myEmacs
];
}