feat: add opencode, comment-checker packages; update README and flake.lock

- Add opencode and comment-checker to home packages
- Package comment-checker via prebuilt GitHub Releases binaries
- Register comment-checker overlay and flake packages output
- Add flake.lock to pin dependency versions
- Update README to match actual repo structure
- Add Node.js version notes in languages.nix
This commit is contained in:
2026-04-03 20:40:00 +08:00
parent b446c018aa
commit c73e36a1be
7 changed files with 246 additions and 15 deletions
+8
View File
@@ -73,6 +73,14 @@
};
};
# ── Packages ────────────────────────────────────────
packages = nixpkgs.lib.genAttrs [ "aarch64-darwin" "x86_64-linux" ] (system: {
comment-checker = (import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
}).comment-checker;
});
# ── Overlays ───────────────────────────────────────
overlays.default = import ./overlays;
};