diff options
| author | 2026-07-18 02:04:47 -0700 | |
|---|---|---|
| committer | 2026-08-26 23:04:25 -0700 | |
| commit | b418c0f380142fd37ad83203183da47dde6fd11d (patch) | |
| tree | ec0d5fbce87856cbcfcbed956df1dbf3812ee93a /config.scm | |
| parent | 85fce4f3eca53785ccd33681bed945f9a7ca9b71 (diff) | |
| download | new-dotfiles-b418c0f380142fd37ad83203183da47dde6fd11d.tar.gz new-dotfiles-b418c0f380142fd37ad83203183da47dde6fd11d.zip | |
config: Try making a hostname make-recipe
Diffstat (limited to 'config.scm')
| -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")) |
