From 5ccacec623a42e501bb03ff556e2639f18b0cb9c Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Fri, 30 May 2025 12:12:17 +0200 Subject: [PATCH] added fix for el-job on windows systems --- config.org | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index d59b749..a4d1d64 100644 --- a/config.org +++ b/config.org @@ -1854,10 +1854,22 @@ If nil it defaults to `split-string-default-separators', normally https://github.com/meedstrom/org-node no sqlite, just plain text and linking with ids not sure if actually better + +since commit on 2025-05-24 which edits el-job-max-cores for windows, it bugs out on the work setup, +because it fails to pull system info about the number of cores. +#+begin_src emacs-lisp +(when *work_remote* + (use-package el-job + :ensure t + :custom + (el-job-max-cores 4))) +#+end_src + #+begin_src emacs-lisp ;;requirement for org-node (use-package org-mem - :ensure (:host github :repo "meedstrom/org-mem")) + :ensure (:host github :repo "meedstrom/org-mem") + :after el-job) (use-package org-node :ensure t