tvl-depot/users/tazjin/emacs/default.nix

154 lines
3.6 KiB
Nix
Raw Normal View History

# This file builds an Emacs pre-configured with the packages I need
# and my personal Emacs configuration.
#
# On NixOS machines, this Emacs currently does not support
# Imagemagick, see https://github.com/NixOS/nixpkgs/issues/70631.
#
# Forcing Emacs to link against Imagemagick currently causes libvterm
# to segfault, which is a lot less desirable than not having telega
# render images correctly.
{ depot, lib, ... }:
let
inherit (depot) third_party;
emacsWithPackages = (third_party.emacsPackagesGen third_party.emacs27).emacsWithPackages;
# Pick telega from unstable channel for recent fixes.
unstable = import third_party.nixpkgsSrc {};
telegaUnstable = (unstable.emacsPackagesGen third_party.emacs27).telega;
# $PATH for binaries that need to be available to Emacs
emacsBinPath = lib.makeBinPath [ telegaUnstable ];
identity = x: x;
tazjinsEmacs = pkgfun: (emacsWithPackages(epkgs: pkgfun(
# Actual ELPA packages (the enlightened!)
(with epkgs.elpaPackages; [
ace-window
avy
flymake
pinentry
rainbow-mode
undo-tree
xelb
]) ++
# MELPA packages:
(with epkgs.melpaPackages; [
ace-link
bazel-mode
browse-kill-ring
cargo
clojure-mode
2020-02-26 16:20:41 +01:00
cmake-mode
counsel
counsel-notmuch
dash-functional
direnv
dockerfile-mode
eglot
2018-07-14 16:18:21 +02:00
elixir-mode
2019-01-30 10:14:50 +01:00
elm-mode
erlang
2020-01-19 20:35:27 +01:00
geiser
go-mode
gruber-darker-theme
haskell-mode
ht
2018-06-19 15:21:34 +02:00
hydra
idle-highlight-mode
intero
ivy
ivy-pass
ivy-prescient
2018-06-08 00:13:27 +02:00
jq-mode
kotlin-mode
lispy
lsp-mode
magit
markdown-toc
2020-05-18 00:59:00 +02:00
meson-mode
multi-term
multiple-cursors
2018-04-23 15:33:05 +02:00
nginx-mode
nix-mode
2019-12-16 12:38:22 +01:00
notmuch # this comes from pkgs.third_party
org-journal
org-ql
paredit
password-store
pg
polymode
prescient
protobuf-mode
racket-mode
rainbow-delimiters
2019-12-16 12:38:22 +01:00
refine
request
restclient
sly
string-edit
swiper
telegaUnstable
telephone-line
terraform-mode
2018-03-17 21:47:27 +01:00
toml-mode
transient
2018-06-22 10:32:01 +02:00
use-package
uuidgen
web-mode
websocket
which-key
yaml-mode
yasnippet
]) ++
# Custom packages
(with depot.tools.emacs-pkgs; [
dottime
nix-util
term-switcher
tvl
2020-02-24 17:40:43 +01:00
# patched / overridden versions of packages
depot.third_party.emacs.exwm
2020-02-24 17:40:43 +01:00
depot.third_party.emacs.rcirc
depot.third_party.emacs.vterm
depot.third_party.emacs.explain-pause-mode
]))));
in lib.fix(self: l: f: third_party.writeShellScriptBin "tazjins-emacs" ''
export PATH="${emacsBinPath}:$PATH"
exec ${tazjinsEmacs f}/bin/emacs \
--debug-init \
--no-site-file \
--no-site-lisp \
--no-init-file \
--directory ${./config} ${if l != null then "--directory ${l}" else ""} \
--eval "(require 'init)" $@
'' // {
# Call overrideEmacs with a function (pkgs -> pkgs) to modify the
# packages that should be included in this Emacs distribution.
overrideEmacs = f': self l f';
# Call withLocalConfig with the path to a *folder* containing a
# `local.el` which provides local system configuration.
withLocalConfig = confDir: self confDir f;
# Build a derivation that uses the specified local Emacs (i.e.
# built outside of Nix) instead
withLocalEmacs = emacsBin: third_party.writeShellScriptBin "tazjins-emacs" ''
export PATH="${emacsBinPath}:$PATH"
export EMACSLOADPATH="${(tazjinsEmacs f).deps}/share/emacs/site-lisp:"
exec ${emacsBin} \
--debug-init \
--no-site-file \
--no-site-lisp \
--no-init-file \
--directory ${./config} \
${if l != null then "--directory ${l}" else ""} \
--eval "(require 'init)" $@
'';
}) null identity