Commit b958259

HPCesia <me@hpcesia.com>
2026-03-20 13:59:52
docs: complete comments for just commands
1 parent b33f21c
Changed files (1)
justfile
@@ -1,16 +1,19 @@
 os := if os() == "macos" { "darwin" } else if os() == "linux" { "linux" } else { error("Unsupported OS") }
 system := arch() + "-" + os
 
-# Build current system profile
+# Build current system profile, make it boot default
 build-boot:
     nh os boot .
 
+# Build and activate current system profile, make it boot default
 build-switch:
     nh os switch .
 
+# Build current system profile, without make it boot default or activate
 build-dry:
     nh os boot . --dry --show-trace
 
+# Write flake-files config into "flake.nix"
 write-flake:
     nix run .#write-flake