Commit b958259
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