2019-12-14 16:25:04 +01:00
|
|
|
# This file builds an Emacs pre-configured with the packages I need
|
|
|
|
# and my personal Emacs configuration.
|
2020-01-07 23:28:17 +01:00
|
|
|
#
|
|
|
|
# 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.
|
2021-04-10 00:12:52 +02:00
|
|
|
{ depot, lib, pkgs, ... }:
|
2018-03-04 00:07:38 +01:00
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
let
|
2021-04-10 18:05:16 +02:00
|
|
|
emacsWithPackages = (pkgs.emacsPackagesGen pkgs.emacs27).emacsWithPackages;
|
2018-09-19 22:59:42 +02:00
|
|
|
|
2019-12-19 15:48:22 +01:00
|
|
|
# $PATH for binaries that need to be available to Emacs
|
2021-04-10 18:05:16 +02:00
|
|
|
emacsBinPath = lib.makeBinPath [ pkgs.emacsPackages.telega ];
|
2019-12-19 15:48:22 +01:00
|
|
|
|
2019-12-16 12:59:07 +01:00
|
|
|
identity = x: x;
|
2020-02-07 13:41:43 +01:00
|
|
|
|
2019-12-16 12:59:07 +01:00
|
|
|
tazjinsEmacs = pkgfun: (emacsWithPackages(epkgs: pkgfun(
|
2018-03-04 00:07:38 +01:00
|
|
|
# Actual ELPA packages (the enlightened!)
|
|
|
|
(with epkgs.elpaPackages; [
|
|
|
|
avy
|
2020-05-22 20:05:39 +02:00
|
|
|
flymake
|
2018-03-04 00:07:38 +01:00
|
|
|
pinentry
|
|
|
|
rainbow-mode
|
|
|
|
undo-tree
|
2020-05-22 20:05:39 +02:00
|
|
|
xelb
|
2018-03-04 00:07:38 +01:00
|
|
|
]) ++
|
|
|
|
|
2018-05-01 16:06:28 +02:00
|
|
|
# MELPA packages:
|
|
|
|
(with epkgs.melpaPackages; [
|
2021-03-21 00:47:36 +01:00
|
|
|
ace-window
|
2020-02-05 12:58:57 +01:00
|
|
|
ace-link
|
2020-08-14 15:19:46 +02:00
|
|
|
bazel-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
browse-kill-ring
|
|
|
|
cargo
|
2021-03-21 01:37:43 +01:00
|
|
|
company
|
2019-12-14 13:47:07 +01:00
|
|
|
clojure-mode
|
2020-02-26 16:20:41 +01:00
|
|
|
cmake-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
counsel
|
|
|
|
counsel-notmuch
|
2018-03-04 00:07:38 +01:00
|
|
|
dash-functional
|
2019-12-14 13:47:07 +01:00
|
|
|
direnv
|
2018-03-04 00:07:38 +01:00
|
|
|
dockerfile-mode
|
2020-03-29 23:30:47 +02:00
|
|
|
eglot
|
2018-07-14 16:18:21 +02:00
|
|
|
elixir-mode
|
2019-01-30 10:14:50 +01:00
|
|
|
elm-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
erlang
|
2018-03-04 00:07:38 +01:00
|
|
|
go-mode
|
|
|
|
gruber-darker-theme
|
|
|
|
haskell-mode
|
|
|
|
ht
|
2018-06-19 15:21:34 +02:00
|
|
|
hydra
|
2018-03-04 00:07:38 +01:00
|
|
|
idle-highlight-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
ivy
|
|
|
|
ivy-prescient
|
2018-06-08 00:13:27 +02:00
|
|
|
jq-mode
|
2018-05-01 16:06:28 +02:00
|
|
|
kotlin-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
lsp-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
magit
|
2018-06-15 13:56:47 +02:00
|
|
|
markdown-toc
|
2020-05-18 00:59:00 +02:00
|
|
|
meson-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
multi-term
|
|
|
|
multiple-cursors
|
2018-04-23 15:33:05 +02:00
|
|
|
nginx-mode
|
2018-10-10 11:21:15 +02:00
|
|
|
nix-mode
|
2019-12-16 12:38:22 +01:00
|
|
|
notmuch # this comes from pkgs.third_party
|
2018-03-04 00:07:38 +01:00
|
|
|
paredit
|
|
|
|
password-store
|
2020-04-07 00:19:52 +02:00
|
|
|
polymode
|
2018-10-10 11:21:15 +02:00
|
|
|
prescient
|
2020-04-07 00:19:52 +02:00
|
|
|
protobuf-mode
|
2018-03-04 00:07:38 +01:00
|
|
|
rainbow-delimiters
|
2019-12-16 12:38:22 +01:00
|
|
|
refine
|
2019-12-17 00:55:12 +01:00
|
|
|
request
|
2020-01-17 18:48:13 +01:00
|
|
|
restclient
|
2019-12-14 13:47:07 +01:00
|
|
|
sly
|
2018-03-04 00:07:38 +01:00
|
|
|
string-edit
|
2018-10-10 11:21:15 +02:00
|
|
|
swiper
|
2018-06-15 00:12:06 +02:00
|
|
|
telephone-line
|
2018-06-15 13:56:47 +02:00
|
|
|
terraform-mode
|
2018-03-17 21:47:27 +01:00
|
|
|
toml-mode
|
2019-12-14 13:47:07 +01:00
|
|
|
transient
|
2018-06-22 10:32:01 +02:00
|
|
|
use-package
|
2018-03-04 00:07:38 +01:00
|
|
|
uuidgen
|
2018-05-23 12:17:20 +02:00
|
|
|
web-mode
|
2018-06-06 23:32:55 +02:00
|
|
|
websocket
|
2019-12-14 13:47:07 +01:00
|
|
|
which-key
|
2018-05-01 16:06:28 +02:00
|
|
|
yaml-mode
|
2020-03-29 23:30:47 +02:00
|
|
|
yasnippet
|
2018-03-04 01:53:41 +01:00
|
|
|
]) ++
|
|
|
|
|
2019-12-14 13:47:07 +01:00
|
|
|
# Custom packages
|
2020-02-21 13:47:29 +01:00
|
|
|
(with depot.tools.emacs-pkgs; [
|
2019-12-19 02:39:22 +01:00
|
|
|
dottime
|
|
|
|
nix-util
|
|
|
|
term-switcher
|
2020-06-19 17:57:16 +02:00
|
|
|
tvl
|
2020-02-24 17:40:43 +01:00
|
|
|
|
2021-04-10 00:12:52 +02:00
|
|
|
# telega comes from a mysterious third package set
|
|
|
|
pkgs.emacsPackages.telega
|
|
|
|
|
2020-05-16 05:08:17 +02:00
|
|
|
# patched / overridden versions of packages
|
|
|
|
depot.third_party.emacs.exwm
|
2020-02-24 17:40:43 +01:00
|
|
|
depot.third_party.emacs.rcirc
|
2020-05-16 05:08:17 +02:00
|
|
|
depot.third_party.emacs.vterm
|
2020-06-11 13:20:37 +02:00
|
|
|
depot.third_party.emacs.explain-pause-mode
|
2019-12-19 02:39:22 +01:00
|
|
|
]))));
|
2021-04-10 18:05:16 +02:00
|
|
|
in lib.fix(self: l: f: pkgs.writeShellScriptBin "tazjins-emacs" ''
|
2019-12-19 15:48:22 +01:00
|
|
|
export PATH="${emacsBinPath}:$PATH"
|
2019-12-16 12:59:07 +01:00
|
|
|
exec ${tazjinsEmacs f}/bin/emacs \
|
2019-12-14 16:25:04 +01:00
|
|
|
--debug-init \
|
|
|
|
--no-site-file \
|
|
|
|
--no-site-lisp \
|
|
|
|
--no-init-file \
|
2019-12-16 14:33:29 +01:00
|
|
|
--directory ${./config} ${if l != null then "--directory ${l}" else ""} \
|
2019-12-15 23:14:31 +01:00
|
|
|
--eval "(require 'init)" $@
|
2019-12-16 14:33:29 +01:00
|
|
|
'' // {
|
|
|
|
# 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;
|
2019-12-17 00:55:23 +01:00
|
|
|
|
|
|
|
# Build a derivation that uses the specified local Emacs (i.e.
|
|
|
|
# built outside of Nix) instead
|
2021-04-10 18:05:16 +02:00
|
|
|
withLocalEmacs = emacsBin: pkgs.writeShellScriptBin "tazjins-emacs" ''
|
2019-12-19 15:48:22 +01:00
|
|
|
export PATH="${emacsBinPath}:$PATH"
|
2019-12-17 01:36:34 +01:00
|
|
|
export EMACSLOADPATH="${(tazjinsEmacs f).deps}/share/emacs/site-lisp:"
|
2019-12-17 00:55:23 +01:00
|
|
|
exec ${emacsBin} \
|
|
|
|
--debug-init \
|
|
|
|
--no-site-file \
|
2019-12-17 01:36:34 +01:00
|
|
|
--no-site-lisp \
|
2019-12-17 00:55:23 +01:00
|
|
|
--no-init-file \
|
2019-12-17 01:36:34 +01:00
|
|
|
--directory ${./config} \
|
|
|
|
${if l != null then "--directory ${l}" else ""} \
|
2019-12-17 00:55:23 +01:00
|
|
|
--eval "(require 'init)" $@
|
|
|
|
'';
|
2019-12-16 14:33:29 +01:00
|
|
|
}) null identity
|