From b418c0f380142fd37ad83203183da47dde6fd11d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 18 Jul 2026 02:04:47 -0700 Subject: config: Try making a hostname make-recipe --- config.scm | 6 ++++-- 1 file 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")) -- cgit v1.3-2-g0d8e