···11# Nix Config Tools
2233-Three Rust utilities for managing the nix config. Run via the flake — no
44-`cargo build` required:
33+⚠️ **DEPRECATED** — These tools have been consolidated into the monorepo at `~/Developer/Git/pkgs/packages/nix-config-tools`.
44+55+Please use the monorepo version instead:
66+77+```bash
88+nix run ~/Developer/Git/pkgs#health-check
99+nix run ~/Developer/Git/pkgs#flake-bump
1010+nix run ~/Developer/Git/pkgs#gen-diff
1111+nix run ~/Developer/Git/pkgs#server-config
1212+```
1313+1414+Or via shell aliases (set up by `home/programs/zsh.nix`):
1515+1616+```bash
1717+health-check # pre-rebuild preflight
1818+flake-bump # inspect / update flake inputs
1919+gen-diff # diff package changes between generations
2020+```
2121+2222+## Migration Details
2323+2424+The source code remains here for reference, but builds should use the monorepo flake. The nix-config flake has been updated to include the monorepo as an input (`pkgs-monorepo`), allowing the tools to be built and run efficiently within a unified workspace.
2525+2626+---
2727+2828+**For historical reference, see the old documentation below. It remains accurate but all commands should now use the monorepo location.**
2929+3030+---
531632```bash
733nix run ~/.config/nix-config/tools#<tool>