···3344[private]
55alias u := update
66-# u: update all inputs
66+# u: update all inputs
77update:
88 nix flake update
991010[private]
1111alias b := build
1212-# b: build the configuration
1212+# b: build the configuration
1313build:
1414 nh os build .
15151616+[private]
1717+alias bt := boot
1818+# bt: make the configuration the boot default without activating it
1619boot:
1720 nh os boot .
18211922[private]
2023alias s := switch
2121-# s: activate configuration & add to boot menu
2424+# s: activate configuration & add to boot menu
2225switch:
2326 nh os switch --ask .
24272528[private]
2629alias c := check
2727-# c: run flake checks, including making sure `.#repl` and the system config evaluate
3030+# c: run all flake checks, including making sure all system configs evaluate
2831check:
2932 nix flake check .# --show-trace
30333134[private]
3235alias f := format
3333-# f: run nix fmt on the flake
3636+# f: format this flake
3437format:
3538 nix fmt
36393740[private]
3841alias gc := garbage-collect
3939-# gc: Run nix collect-garbage -d
4242+# gc: run a garbage collection
4043garbage-collect:
4144 nh clean all
4245