From 0644029f8e0c430196c27b84166ff1f91f5f877b Mon Sep 17 00:00:00 2001 From: ChUrl Date: Fri, 1 Jul 2022 16:11:28 +0200 Subject: [PATCH] Change doom emacs path --- home/modules/emacs.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/modules/emacs.nix b/home/modules/emacs.nix index fc216748..a1edafe4 100644 --- a/home/modules/emacs.nix +++ b/home/modules/emacs.nix @@ -57,7 +57,7 @@ in { }; home.sessionPath = [ - "/home/${config.home.username}/.emacs.d/bin" + "/home/${config.home.username}/.emacs/bin" ]; # TODO: @@ -69,8 +69,8 @@ in { # Because we write to the filesystem, this script has to be run after HomeManager's writeBoundary installDoomEmacs = hm.dag.entryAfter ["writeBoundary"] '' - if [ ! -d "${config.home.homeDirectory}/.emacs.d" ]; then - git clone --depth=1 --single-branch "https://github.com/doomemacs/doomemacs" "${config.home.homeDirectory}/.emacs.d" + if [ ! -d "${config.home.homeDirectory}/.emacs" ]; then + git clone --depth=1 --single-branch "https://github.com/doomemacs/doomemacs" "${config.home.homeDirectory}/.emacs" fi ''; };