diff options
| -rw-r--r-- | GNUmakefile | 5 | ||||
| -rw-r--r-- | config.scm | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9652766..5f68660 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -172,6 +172,11 @@ surfingkeys/dist/home.js: surfingkeys/home.ts surfingkeys/dist/punt.js: surfingkeys/punt.ts surfingkeys/home.ts cd surfingkeys && guix shell nodejs -- npx webpack -c webpack.config.js +## Rincewind + +rincewind: \ + emacs/.emacs.d/init.el + ## Diamond Interactive MacOS diamond-interactive: \ @@ -1,8 +1,6 @@ (add-to-load-path (dirname (current-filename))) -(define hostname (gethostname)) - -(system* "make" hostname) +(system* "make" (gethostname)) (load-from-path "secrets.scm") -(load-from-path (string-append "oni/home/config/" hostname ".scm")) +(load-from-path (string-append "oni/home/config/" (gethostname) ".scm")) |
