···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 checks for the current system
2831check:
2929- nix flake check .# --show-trace
3232+ nix build --show-trace .#uberCheck.$(nix eval --impure --raw --expr 'builtins.currentSystem')
30333134[private]
3235alias f := format
3333-# f: run nix fmt on the flake
3636+# f: format this flake
3437format:
3538 nix fmt
36393740[private]
4141+alias r := repl
4242+# r: start a debugging repl
4343+repl:
4444+ nix repl .#repl
4545+4646+[private]
3847alias gc := garbage-collect
3939-# gc: Run nix collect-garbage -d
4848+# gc: run a garbage collection
4049garbage-collect:
4150 nh clean all
4251