fadf0619eb
Builds an Emacs that is not only configured with the required packages but with the entire Emacs configuration for my personal setup. This means that `nix-env -iA tools.emacs` will install a fully-configured Emacs that can be launched as the window manager from my ~/.xsession.
112 lines
2.2 KiB
Nix
112 lines
2.2 KiB
Nix
# This file builds an Emacs pre-configured with the packages I need
|
|
# and my personal Emacs configuration.
|
|
|
|
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
with third_party.emacsPackagesNg;
|
|
|
|
let
|
|
emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;
|
|
|
|
carpMode = melpaBuild {
|
|
pname = "carp-mode";
|
|
ename = "carp-mode";
|
|
version = "3.0";
|
|
recipe = builtins.toFile "recipe" ''
|
|
(carp-mode :fetcher github
|
|
:repo "carp-lang/carp"
|
|
:files ("emacs/*.el"))
|
|
'';
|
|
|
|
packageRequires = [ clojure-mode ];
|
|
src = third_party.fetchFromGitHub {
|
|
owner = "carp-lang";
|
|
repo = "carp";
|
|
rev = "6954642cadee730885717201c3180c7acfb1bfa9";
|
|
sha256 = "1pz4x2qkwjbz789bwc6nkacrjpzlxawxhl2nv0xdp731y7q7xyk9";
|
|
};
|
|
};
|
|
|
|
tazjinsEmacs = (emacsWithPackages(epkgs:
|
|
# 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
|
|
# TODO: eglot removed until workspace-folders are supported (needed for gopls)
|
|
# eglot
|
|
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
|
|
paredit
|
|
password-store
|
|
pg
|
|
notmuch # this comes from pkgs.third_party
|
|
prescient
|
|
racket-mode
|
|
rainbow-delimiters
|
|
restclient
|
|
sly
|
|
smartparens
|
|
string-edit
|
|
swiper
|
|
telephone-line
|
|
terraform-mode
|
|
toml-mode
|
|
transient
|
|
use-package
|
|
uuidgen
|
|
web-mode
|
|
websocket
|
|
which-key
|
|
xelb
|
|
yaml-mode
|
|
]) ++
|
|
|
|
# Custom packages
|
|
[ carpMode ]
|
|
));
|
|
in third_party.writeShellScriptBin "tazjins-emacs" ''
|
|
exec ${tazjinsEmacs}/bin/emacs \
|
|
--debug-init \
|
|
--no-site-file \
|
|
--no-site-lisp \
|
|
--no-init-file \
|
|
--directory ${./config} \
|
|
--eval "(require 'init)"
|
|
''
|