Files
nixos-configs/hosts/pinwheel/modules/emacs/config.nix
Alexander Heldt f15701f426 Apply nixfmt
2024-09-02 21:55:41 +02:00

11 lines
252 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
''