about summary refs log tree commit diff
path: root/users/wpcarro/emacs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-01-31T20·58-0800
committerclbot <clbot@tvl.fyi>2022-01-31T22·01+0000
commitb7de629e053787241666553ba74b52ac11a3acf4 (patch)
tree1f77eb37b74199fe7403a20d3ba5c211de3a08c7 /users/wpcarro/emacs
parent7ce377b89e1f978100e0939ac19b9e589716c41c (diff)
feat(wpcarro/emacs): Format generated shell code of load kwarg r/3726
This makes the human-parsing of the generated shell scripts a bit more
pleasant (I'm looking at you, home-manager).

Change-Id: I01b9075892dbf4907d6cf813575e36f69e0c5090
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5146
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs')
-rw-r--r--users/wpcarro/emacs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix
index b751849eab..63d30c40a4 100644
--- a/users/wpcarro/emacs/default.nix
+++ b/users/wpcarro/emacs/default.nix
@@ -141,7 +141,7 @@ let
         --no-site-file \
         --no-site-lisp \
         --load ${./.emacs.d/init.el} \
-        ${concatStringsSep "\n" (map (el: "--load ${el} \\") load)}
+        ${concatStringsSep "\n  " (map (el: "--load ${el} \\") load)}
         "$@"
     '';
 in