Files
nixos-configs/hosts/pinwheel/modules/emacs/config.nix
2023-09-09 10:06:44 +02:00

11 lines
254 B
Nix

{ 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
''