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.
8 lines
324 B
8 lines
324 B
(let ((host-file (concat "~/.local/source/dotfiles/hosts/" system-name ".el")))
|
|
(when (file-exists-p host-file)
|
|
(load-file host-file)))
|
|
|
|
(dolist (m dotfiles/modules)
|
|
(let ((mod-file (concat "~/.local/source/dotfiles/modules/" (symbol-name m) ".el")))
|
|
(when (file-exists-p mod-file)
|
|
(load-file mod-file))))
|