aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-18 02:04:47 -0700
committerGravatar Tom Willemse2026-07-18 02:13:34 -0700
commit18a202a2f8246e19df47c5c57871d405f7983c9e (patch)
treef78102d4ba3f81507215b563ec0f93420441ddd2
parent711487fb965850bf7a4a5beb2895c25d4219904a (diff)
downloadnew-dotfiles-18a202a2f8246e19df47c5c57871d405f7983c9e.tar.gz
new-dotfiles-18a202a2f8246e19df47c5c57871d405f7983c9e.zip
config: Try making a hostname make-recipe
-rw-r--r--config.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.scm b/config.scm
index 49ab8d7..194a4b2 100644
--- a/config.scm
+++ b/config.scm
@@ -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"))