fix: flake.nix typo, generate.sh word-splitting, README accuracy

- flake.nix: fix gettex → gettext typo, restore codex package
- generate.sh: replace ls-based loop with direct glob (word-splitting safe)
- README.md: fix AGENTS.md source column (rules/*.md only, not CLAUDE.md)
This commit is contained in:
Bryan Ramos 2026-04-02 08:55:38 -04:00
parent b9d8b03895
commit 8398d7149d
3 changed files with 7 additions and 3 deletions

View file

@ -7,7 +7,11 @@
in {
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = [ pkgs.yq-go pkgs.gettext pkgs.codex ];
packages = with pkgs; [
yq-go
gettext
codex
];
};
});
};