blob: 8d12bcb11dbf84b2216c6dddaec207c4b8071cc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# This file builds an Emacs pre-configured with the packages I need
# and my personal Emacs configuration.
{ pkgs, ... }:
with pkgs;
with third_party.emacsPackagesNg;
with third_party.emacs;
let
localPackages = pkgs.tools.emacs-pkgs;
emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;
identity = x: x;
tazjinsEmacs = pkgfun: (emacsWithPackages(epkgs: pkgfun(
# Actual ELPA packages (the enlightened!)
(with epkgs.elpaPackages; [
ace-window
avy
pinentry
rainbow-mode
undo-tree
]) ++
# MELPA packages:
(with epkgs.melpaPackages; [
browse-kill-ring
cargo
clojure-mode
counsel
counsel-notmuch
dash-functional
direnv
dockerfile-mode
elixir-mode
elm-mode
erlang
exwm
go-mode
gruber-darker-theme
haskell-mode
ht
hydra
idle-highlight-mode
intero
ivy
ivy-pass
ivy-prescient
jq-mode
kotlin-mode
lsp-mode
magit
markdown-toc
multi-term
multiple-cursors
nginx-mode
nix-mode
notmuch # this comes from pkgs.third_party
paredit
password-store
pg
prescient
racket-mode
rainbow-delimiters
refine
restclient
sly
string-edit
swiper
telephone-line
terraform-mode
toml-mode
transient
use-package
uuidgen
vterm
web-mode
websocket
which-key
xelb
yaml-mode
]) ++
# Custom packages
[ carp-mode localPackages.dottime localPackages.term-switcher ]
)));
in lib.fix(self: f: third_party.writeShellScriptBin "tazjins-emacs" ''
exec ${tazjinsEmacs f}/bin/emacs \
--debug-init \
--no-site-file \
--no-site-lisp \
--no-init-file \
--directory ${./config} \
--eval "(require 'init)" $@
'' // { overrideEmacs = f': self f'; }) identity
|