You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
372 B
10 lines
372 B
;; Load the host configuration.
|
|
(let ((host-file (concat user-emacs-directory "/hosts/" system-name ".el")))
|
|
(when (file-exists-p host-file)
|
|
(load-file host-file)))
|
|
|
|
;; Load the enabled modules.
|
|
(dolist (m dotfiles/modules)
|
|
(let ((mod-file (concat dotfiles/home "/modules/" (symbol-name m) ".el")))
|
|
(when (file-exists-p mod-file)
|
|
(load-file mod-file))))
|