pinwheel: Add emacs

This commit is contained in:
Alexander Heldt
2023-09-09 10:06:44 +02:00
parent 2cd8eabdda
commit 6aefd03d0d
6 changed files with 496 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ emacs, runCommand, ... }:
runCommand "default.el" {} ''
cp ${./config.org} $TMPDIR/config.org
cd $TMPDIR
${emacs}/bin/emacs --batch -Q \
-l org config.org \
-f org-babel-tangle
mv config.el $out
''