summary refs log tree commit diff stats
path: root/user/modules
diff options
context:
space:
mode:
authorAlan Pearce2020-08-26 14:02:23 +0200
committerAlan Pearce2020-08-26 14:03:50 +0200
commit3937dbd373054643862bed55e11280d2f34b6eeb (patch)
tree12c19cb7f134d7564107024c3cde68fe887f35e5 /user/modules
parent0f6a0e57504c07aa9f93f6d23a56555341ee5124 (diff)
downloadnixfiles-3937dbd373054643862bed55e11280d2f34b6eeb.tar.lz
nixfiles-3937dbd373054643862bed55e11280d2f34b6eeb.tar.zst
nixfiles-3937dbd373054643862bed55e11280d2f34b6eeb.zip
BC! Emacs: move config to XDG config dir
Diffstat (limited to 'user/modules')
-rw-r--r--user/modules/eshell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/modules/eshell.nix b/user/modules/eshell.nix
index c4fc366f..eaa4a206 100644
--- a/user/modules/eshell.nix
+++ b/user/modules/eshell.nix
@@ -20,7 +20,7 @@ in {
   };
 
   config = mkIf cfg.enable {
-    home.file.".emacs.d/eshell/alias" = {
+    xdg.configFile."emacs/eshell/alias" = {
       recursive = true;
       text = concatStringsSep "\n" (mapAttrsToList (k: v: "alias ${k} ${v}") cfg.eshell.aliases);
     };