Commit b9b4884

HPCesia <me@hpcesia.com>
2026-03-20 06:18:39
chore: make system arch in justfile dynamically
1 parent db67371
Changed files (1)
justfile
@@ -1,4 +1,5 @@
-system := "x86_64-linux"
+os := if os() == "macos" { "darwin" } else if os() == "linux" { "linux" } else { error("Unsupported OS") }
+system := arch() + "-" + os
 
 # Build current system profile
 build-boot: