aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-18 02:04:47 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commitb418c0f380142fd37ad83203183da47dde6fd11d (patch)
treeec0d5fbce87856cbcfcbed956df1dbf3812ee93a
parent85fce4f3eca53785ccd33681bed945f9a7ca9b71 (diff)
downloadnew-dotfiles-b418c0f380142fd37ad83203183da47dde6fd11d.tar.gz
new-dotfiles-b418c0f380142fd37ad83203183da47dde6fd11d.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"))