straight-freeze-version gives straight--dir: Wrong type argument:
I'm trying to make my Emacs configuration more reproducible, in part by creating variables with paths to packages, directories which depend on what machine I'm on:
(if my/laptop-p
(progn
...
(defvar my/mu4e-dir "/usr/share/emacs/site-lisp/mu4e"
"Location of local `mu4e' files installed by system package manager")
...
))
Here, my/laptop-p tests if (equal (system-name) "my-thinkpad").