diff --git a/README.org b/README.org index acd8caf..c55e78d 100644 --- a/README.org +++ b/README.org @@ -124,7 +124,7 @@ The host configuration is loaded (if it exist) using the systems name. #+begin_src emacs-lisp ;; Load the host configuration. -(let ((host-file (concat user-emacs-directory "/hosts/" system-name ".el"))) +(let ((host-file (concat dotfiles/home "/hosts/" system-name ".el"))) (when (file-exists-p host-file) (load-file host-file))) #+end_src diff --git a/init.el b/init.el index 1041acd..7821bfe 100644 --- a/init.el +++ b/init.el @@ -39,7 +39,7 @@ "Directory containing the password store.") ;; Load the host configuration. -(let ((host-file (concat user-emacs-directory "/hosts/" system-name ".el"))) +(let ((host-file (concat dotfiles/home "/hosts/" system-name ".el"))) (when (file-exists-p host-file) (load-file host-file)))