diff options
| author | 2026-07-18 02:04:47 -0700 | |
|---|---|---|
| committer | 2026-07-18 02:13:34 -0700 | |
| commit | 18a202a2f8246e19df47c5c57871d405f7983c9e (patch) | |
| tree | f78102d4ba3f81507215b563ec0f93420441ddd2 | |
| parent | 711487fb965850bf7a4a5beb2895c25d4219904a (diff) | |
| download | new-dotfiles-18a202a2f8246e19df47c5c57871d405f7983c9e.tar.gz new-dotfiles-18a202a2f8246e19df47c5c57871d405f7983c9e.zip | |
config: Try making a hostname make-recipe
| -rw-r--r-- | config.scm | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ (add-to-load-path (dirname (current-filename))) -(system* "make" "new-dotfiles") +(define hostname (gethostname)) + +(system* "make" hostname) (load-from-path "secrets.scm") -(load-from-path (string-append "oni/home/config/" (gethostname) ".scm")) +(load-from-path (string-append "oni/home/config/" hostname ".scm")) |
