all repos — nixfiles @ bdf40c97b2fdb48aa509c76ba1ad3f5d86839fb6

System and user configuration, managed by nix and home-manager

hooks/post-up/emacs (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env zsh

if [[ -s $commands[emacs] ]]
then
	if [[ -s $commands[cask] ]]
	then
		pushd ~/.emacs.d
		cask install
		popd
	fi
	emacs --batch --eval '(batch-byte-recompile-directory 0)' ~/.emacs.d/
fi