Payload
{
"action": "created",
"comment": {
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3393602049",
"pull_request_review_id": 4474087468,
"id": 3393602049,
"node_id": "PRRC_kwDOSB6EzM7KRkIB",
"diff_hunk": "@@ -0,0 +1,348 @@\n+#!/usr/bin/env bash\n+set -euo pipefail\n+\n+usage() {\n+\techo \"usage: $0 <path-to-app-dmg-or-updater-tarball> [more paths...]\" >&2\n+}\n+\n+if [ \"$#\" -eq 0 ]; then\n+\tusage\n+\texit 2\n+fi\n+\n+if ! command -v otool >/dev/null 2>&1; then\n+\techo \"ERROR: otool is required to normalize macOS install names\" >&2\n+\texit 2\n+fi\n+\n+if ! command -v install_name_tool >/dev/null 2>&1; then\n+\techo \"ERROR: install_name_tool is required to normalize macOS install names\" >&2\n+\texit 2\n+fi\n+\n+SCRIPT_DIR=$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\n+REPO_ROOT=$(cd \"$SCRIPT_DIR/../../..\" && pwd)\n+ENTITLEMENTS_PATH=\"$REPO_ROOT/apps/native/src-tauri/entitlements.plist\"\n+TMP_DIR=$(mktemp -d)\n+MOUNTS_FILE=\"$TMP_DIR/mounts\"\n+REWRITES_FILE=\"$TMP_DIR/rewrites\"\n+touch \"$MOUNTS_FILE\" \"$REWRITES_FILE\"\n+\n+detach_with_retry() {\n+\tlocal mount=\"$1\"\n+\n+\tfor i in 1 2 3 4 5; do\n+\t\tif hdiutil detach \"$mount\" >/dev/null 2>&1; then\n+\t\t\treturn 0\n+\t\tfi\n+\t\tif [ \"$i\" -lt 5 ]; then\n+\t\t\tsleep 2\n+\t\tfi\n+\tdone\n+\n+\thdiutil detach \"$mount\" -force >/dev/null 2>&1\n+}\n+\n+cleanup() {\n+\twhile IFS= read -r mount_point; do\n+\t\t[ -n \"$mount_point\" ] || continue\n+\t\tdetach_with_retry \"$mount_point\" || true\n+\tdone <\"$MOUNTS_FILE\"\n+\trm -rf \"$TMP_DIR\"\n+}\n+trap cleanup EXIT\n+\n+trim_dependency() {\n+\tlocal line=\"$1\"\n+\tline=\"${line#\"${line%%[![:space:]]*}\"}\"\n+\tprintf '%s\\n' \"${line%% (*}\"\n+}\n+\n+absolute_path() {\n+\tlocal path=\"$1\"\n+\tlocal dir\n+\tlocal base\n+\n+\tdir=$(cd \"$(dirname \"$path\")\" && pwd -P)\n+\tbase=$(basename \"$path\")\n+\tprintf '%s/%s\\n' \"$dir\" \"$base\"\n+}\n+\n+portable_install_name_for_dependency() {\n+\tlocal dependency=\"$1\"\n+\n+\tcase \"$dependency\" in\n+\t\t/nix/store/*-libiconv-*/lib/libiconv.2.dylib)\n+\t\t\tprintf '%s\\n' \"/usr/lib/libiconv.2.dylib\"\n+\t\t\t;;\n+\t\t*)\n+\t\t\tprintf '\\n'\n+\t\t\t;;\n+\tesac\n+}\n+\n+normalize_macho_file() {\n+\tlocal file=\"$1\"\n+\tlocal dependencies_output=\"$TMP_DIR/otool-dependencies\"\n+\tlocal dependency\n+\tlocal portable_dependency\n+\tlocal line\n+\n+\tif ! otool -hv \"$file\" >/dev/null 2>&1; then\n+\t\treturn\n+\tfi\n+\n+\tif ! otool -L \"$file\" >\"$dependencies_output\" 2>&1; then\n+\t\treturn\n+\tfi\n+\n+\tif grep -F \"is not an object file\" \"$dependencies_output\" >/dev/null; then\n+\t\treturn\n+\tfi\n+\n+\twhile IFS= read -r line; do\n+\t\tcase \"$line\" in\n+\t\t\t\"$file:\" | *\":\")\n+\t\t\t\tcontinue\n+\t\t\t\t;;\n+\t\tesac\n+\n+\t\tdependency=$(trim_dependency \"$line\")\n+\t\tportable_dependency=$(portable_install_name_for_dependency \"$dependency\")\n+\n+\t\tif [ -z \"$portable_dependency\" ] || [ \"$dependency\" = \"$portable_dependency\" ]; then\n+\t\t\tcontinue\n+\t\tfi\n+\n+\t\tinstall_name_tool -change \"$dependency\" \"$portable_dependency\" \"$file\"",
"path": "ops/scripts/release/normalize-macos-install-names.sh",
"commit_id": "2344854f09f23d45bb6d19c99f5e0dad1e35b52f",
"original_commit_id": "2344854f09f23d45bb6d19c99f5e0dad1e35b52f",
"user": {
"login": "chatgpt-codex-connector[bot]",
"id": 199175422,
"node_id": "BOT_kgDOC98s_g",
"avatar_url": "https://avatars.githubusercontent.com/in/1144995?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D",
"html_url": "https://github.com/apps/chatgpt-codex-connector",
"followers_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"body": "**<sub><sub></sub></sub> Update matching dylib IDs with -id**\n\nWhen a copied dylib itself has the Nix libiconv install name, `otool -L` reports that install name as the first entry for the dylib; the portability checker then scans the same output and flags `/nix/store/...libiconv...` as non-portable. `install_name_tool`'s synopsis distinguishes `-change old new` from `-id name`, so this line only rewrites dependent load commands and leaves the dylib's own `LC_ID_DYLIB` unchanged, causing CI to fail whenever the bundle includes such a dylib even though the dependency is otherwise mapped to `/usr/lib/libiconv.2.dylib`.\n\nUseful? React with 👍 / 👎.",
"created_at": "2026-06-11T05:53:36Z",
"updated_at": "2026-06-11T05:53:36Z",
"html_url": "https://github.com/darkmatter/nixmac/pull/354#discussion_r3393602049",
"pull_request_url": "https://api.github.com/repos/darkmatter/nixmac/pulls/354",
"_links": {
"self": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3393602049"
},
"html": {
"href": "https://github.com/darkmatter/nixmac/pull/354#discussion_r3393602049"
},
"pull_request": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/354"
}
},
"reactions": {
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3393602049/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"start_line": null,
"original_start_line": null,
"start_side": null,
"line": 117,
"original_line": 117,
"side": "RIGHT",
"author_association": "NONE",
"original_position": 117,
"position": 117,
"subject_type": "line"
},
"pull_request": {
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/354",
"id": 3828909098,
"node_id": "PR_kwDOSB6EzM7kOIQq",
"html_url": "https://github.com/darkmatter/nixmac/pull/354",
"diff_url": "https://github.com/darkmatter/nixmac/pull/354.diff",
"patch_url": "https://github.com/darkmatter/nixmac/pull/354.patch",
"issue_url": "https://api.github.com/repos/darkmatter/nixmac/issues/354",
"number": 354,
"state": "open",
"locked": false,
"title": "fix(native): guide Nix setup externally and gate portable builds",
"user": {
"login": "fkb032",
"id": 249513614,
"node_id": "U_kgDODt9Gjg",
"avatar_url": "https://avatars.githubusercontent.com/u/249513614?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fkb032",
"html_url": "https://github.com/fkb032",
"followers_url": "https://api.github.com/users/fkb032/followers",
"following_url": "https://api.github.com/users/fkb032/following{/other_user}",
"gists_url": "https://api.github.com/users/fkb032/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fkb032/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fkb032/subscriptions",
"organizations_url": "https://api.github.com/users/fkb032/orgs",
"repos_url": "https://api.github.com/users/fkb032/repos",
"events_url": "https://api.github.com/users/fkb032/events{/privacy}",
"received_events_url": "https://api.github.com/users/fkb032/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"body": "## Summary\n\n- Replace the in-app Nix/nix-darwin installer flow with guided external setup links and explicit recheck actions.\n- Remove now-unused frontend install/progress API wrappers and widget store state.\n- Add macOS release artifact hardening: normalize known system dylib install names and fail CI if the app, DMG, or updater tarball contains non-portable Mach-O dependencies.\n- Repack the updater `.app.tar.gz` after normalization and refresh its Tauri updater signature when a `.sig` exists.\n\nReview notes:\n- The Rust install/prefetch commands and generated event types are left as a follow-up cleanup candidate. The frontend has no remaining caller, but deleting the backend path would widen this PR into generated-type/backend install machinery.\n- Pre-existing release behavior: the updater archive is still separate from the Apple Developer ID signing/notarization path used for the DMG. This PR does not restructure that; it makes the updater archive portable and refreshes the updater signature after repacking.\n\n## Test Plan\n\n- [x] `bash ops/scripts/release/normalize-macos-install-names.test.sh`\n- [x] `bash ops/scripts/release/check-portable-macos-app.test.sh`\n- [x] `shellcheck ops/scripts/release/check-portable-macos-app.sh ops/scripts/release/check-portable-macos-app.test.sh ops/scripts/release/normalize-macos-install-names.sh ops/scripts/release/normalize-macos-install-names.test.sh`\n- [x] `yq '.' .github/workflows/build.yaml`\n- [x] `git diff --check`\n- [x] `rg \"installNix|prefetchDarwinRebuild|installStart|nixInstalling|nixInstallPhase|nixDownloadProgress|setNixInstalling|setNixInstallPhase|setNixDownloadProgress|darwinRebuildPrefetching|setDarwinRebuildPrefetching\" apps/native/src -n` returns no matches\n- [x] `bun run test:unit src/components/widget/steps/nix-setup-step.test.tsx`\n- [x] `bun run build`\n- [x] `bun run check` (0 errors, existing warnings only)\n- [x] `bun run desktop:test` (Rust: 428 passed, 2 ignored; Vitest: 22 files / 116 tests passed)\n- [x] `bun run desktop:build` produced app, DMG, and updater tarball locally, then stopped at missing local `TAURI_SIGNING_PRIVATE_KEY` as expected\n- [x] `bash ops/scripts/release/normalize-macos-install-names.sh \"$APP_PATH\" \"$DMG_PATH\" \"$TAR_GZ_PATH\"` on fresh local build artifacts\n- [x] `bash ops/scripts/release/check-portable-macos-app.sh \"$APP_PATH\" \"$DMG_PATH\" \"$TAR_GZ_PATH\"` on fresh local build artifacts (passed for 3 Mach-O files)\n- [x] Claude Opus 4.8 review: no blockers; surfaced deferred backend/updater-notarization notes\n- [x] `codex review --uncommitted`: found two release-script issues; both fixed and covered by tests\n\n## Docs\n\n- [x] No docs update needed\n",
"created_at": "2026-06-09T05:08:36Z",
"updated_at": "2026-06-11T05:53:36Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "05641a8c6280c0c5edaa7599b4a806d83270b68a",
"assignees": [],
"requested_reviewers": [],
"requested_teams": [],
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/pulls/354/commits",
"review_comments_url": "https://api.github.com/repos/darkmatter/nixmac/pulls/354/comments",
"review_comment_url": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/issues/354/comments",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/2344854f09f23d45bb6d19c99f5e0dad1e35b52f",
"head": {
"label": "darkmatter:fkb/eng-494-guided-nix-setup",
"ref": "fkb/eng-494-guided-nix-setup",
"sha": "2344854f09f23d45bb6d19c99f5e0dad1e35b52f",
"user": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 1209959628,
"node_id": "R_kgDOSB6EzA",
"name": "nixmac",
"full_name": "darkmatter/nixmac",
"private": false,
"owner": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/darkmatter/nixmac",
"description": "Home manager and nix-darwin that understands plain English",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"forks_url": "https://api.github.com/repos/darkmatter/nixmac/forks",
"keys_url": "https://api.github.com/repos/darkmatter/nixmac/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/nixmac/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/nixmac/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/nixmac/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/nixmac/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/nixmac/events",
"assignees_url": "https://api.github.com/repos/darkmatter/nixmac/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/nixmac/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/nixmac/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/nixmac/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/nixmac/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/nixmac/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/nixmac/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/nixmac/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/nixmac/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/nixmac/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/nixmac/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/nixmac/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/nixmac/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/nixmac/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/nixmac/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/nixmac/merges",
"archive_url": "https://api.github.com/repos/darkmatter/nixmac/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/nixmac/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/nixmac/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/nixmac/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/nixmac/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/nixmac/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/nixmac/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/nixmac/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/nixmac/deployments",
"created_at": "2026-04-14T00:37:13Z",
"updated_at": "2026-06-10T15:32:59Z",
"pushed_at": "2026-06-11T05:53:36Z",
"git_url": "git://github.com/darkmatter/nixmac.git",
"ssh_url": "git@github.com:darkmatter/nixmac.git",
"clone_url": "https://github.com/darkmatter/nixmac.git",
"svn_url": "https://github.com/darkmatter/nixmac",
"homepage": "https://nixmac.com",
"size": 681526,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 89,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [
"home-manager",
"nix",
"nix-darwin",
"nix-flake",
"opencode"
],
"visibility": "public",
"forks": 1,
"open_issues": 89,
"watchers": 5,
"default_branch": "develop",
"allow_squash_merge": true,
"allow_merge_commit": false,
"allow_rebase_merge": true,
"allow_auto_merge": true,
"delete_branch_on_merge": true,
"allow_update_branch": true,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE"
}
},
"base": {
"label": "darkmatter:develop",
"ref": "develop",
"sha": "20d603b4f95f88f6489e171f8e312094d755b740",
"user": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 1209959628,
"node_id": "R_kgDOSB6EzA",
"name": "nixmac",
"full_name": "darkmatter/nixmac",
"private": false,
"owner": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/darkmatter/nixmac",
"description": "Home manager and nix-darwin that understands plain English",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"forks_url": "https://api.github.com/repos/darkmatter/nixmac/forks",
"keys_url": "https://api.github.com/repos/darkmatter/nixmac/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/nixmac/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/nixmac/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/nixmac/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/nixmac/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/nixmac/events",
"assignees_url": "https://api.github.com/repos/darkmatter/nixmac/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/nixmac/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/nixmac/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/nixmac/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/nixmac/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/nixmac/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/nixmac/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/nixmac/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/nixmac/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/nixmac/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/nixmac/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/nixmac/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/nixmac/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/nixmac/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/nixmac/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/nixmac/merges",
"archive_url": "https://api.github.com/repos/darkmatter/nixmac/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/nixmac/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/nixmac/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/nixmac/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/nixmac/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/nixmac/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/nixmac/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/nixmac/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/nixmac/deployments",
"created_at": "2026-04-14T00:37:13Z",
"updated_at": "2026-06-10T15:32:59Z",
"pushed_at": "2026-06-11T05:53:36Z",
"git_url": "git://github.com/darkmatter/nixmac.git",
"ssh_url": "git@github.com:darkmatter/nixmac.git",
"clone_url": "https://github.com/darkmatter/nixmac.git",
"svn_url": "https://github.com/darkmatter/nixmac",
"homepage": "https://nixmac.com",
"size": 681526,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 89,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [
"home-manager",
"nix",
"nix-darwin",
"nix-flake",
"opencode"
],
"visibility": "public",
"forks": 1,
"open_issues": 89,
"watchers": 5,
"default_branch": "develop",
"allow_squash_merge": true,
"allow_merge_commit": false,
"allow_rebase_merge": true,
"allow_auto_merge": true,
"delete_branch_on_merge": true,
"allow_update_branch": true,
"use_squash_pr_title_as_default": false,
"squash_merge_commit_message": "COMMIT_MESSAGES",
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
"merge_commit_message": "PR_TITLE",
"merge_commit_title": "MERGE_MESSAGE"
}
},
"_links": {
"self": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/354"
},
"html": {
"href": "https://github.com/darkmatter/nixmac/pull/354"
},
"issue": {
"href": "https://api.github.com/repos/darkmatter/nixmac/issues/354"
},
"comments": {
"href": "https://api.github.com/repos/darkmatter/nixmac/issues/354/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/354/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/354/commits"
},
"statuses": {
"href": "https://api.github.com/repos/darkmatter/nixmac/statuses/2344854f09f23d45bb6d19c99f5e0dad1e35b52f"
}
},
"author_association": "CONTRIBUTOR",
"auto_merge": null,
"assignee": null,
"active_lock_reason": null
},
"repository": {
"id": 1209959628,
"node_id": "R_kgDOSB6EzA",
"name": "nixmac",
"full_name": "darkmatter/nixmac",
"private": false,
"owner": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/darkmatter",
"html_url": "https://github.com/darkmatter",
"followers_url": "https://api.github.com/users/darkmatter/followers",
"following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
"gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
"organizations_url": "https://api.github.com/users/darkmatter/orgs",
"repos_url": "https://api.github.com/users/darkmatter/repos",
"events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
"received_events_url": "https://api.github.com/users/darkmatter/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/darkmatter/nixmac",
"description": "Home manager and nix-darwin that understands plain English",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"forks_url": "https://api.github.com/repos/darkmatter/nixmac/forks",
"keys_url": "https://api.github.com/repos/darkmatter/nixmac/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/nixmac/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/nixmac/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/nixmac/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/nixmac/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/nixmac/events",
"assignees_url": "https://api.github.com/repos/darkmatter/nixmac/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/nixmac/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/nixmac/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/nixmac/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/nixmac/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/nixmac/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/nixmac/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/nixmac/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/nixmac/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/nixmac/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/nixmac/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/nixmac/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/nixmac/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/nixmac/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/nixmac/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/nixmac/merges",
"archive_url": "https://api.github.com/repos/darkmatter/nixmac/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/nixmac/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/nixmac/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/nixmac/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/nixmac/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/nixmac/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/nixmac/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/nixmac/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/nixmac/deployments",
"created_at": "2026-04-14T00:37:13Z",
"updated_at": "2026-06-10T15:32:59Z",
"pushed_at": "2026-06-11T05:53:36Z",
"git_url": "git://github.com/darkmatter/nixmac.git",
"ssh_url": "git@github.com:darkmatter/nixmac.git",
"clone_url": "https://github.com/darkmatter/nixmac.git",
"svn_url": "https://github.com/darkmatter/nixmac",
"homepage": "https://nixmac.com",
"size": 681526,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 89,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [
"home-manager",
"nix",
"nix-darwin",
"nix-flake",
"opencode"
],
"visibility": "public",
"forks": 1,
"open_issues": 89,
"watchers": 5,
"default_branch": "develop",
"custom_properties": {}
},
"organization": {
"login": "darkmatter",
"id": 17834193,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
"url": "https://api.github.com/orgs/darkmatter",
"repos_url": "https://api.github.com/orgs/darkmatter/repos",
"events_url": "https://api.github.com/orgs/darkmatter/events",
"hooks_url": "https://api.github.com/orgs/darkmatter/hooks",
"issues_url": "https://api.github.com/orgs/darkmatter/issues",
"members_url": "https://api.github.com/orgs/darkmatter/members{/member}",
"public_members_url": "https://api.github.com/orgs/darkmatter/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
"description": ""
},
"enterprise": {
"id": 469843,
"slug": "darkmatter",
"name": "darkmatter",
"node_id": "E_kgDOAAcrUw",
"avatar_url": "https://avatars.githubusercontent.com/b/469843?v=4",
"description": "",
"website_url": "darkmatter.io",
"html_url": "https://github.com/enterprises/darkmatter",
"created_at": "2025-09-07T16:01:00Z",
"updated_at": "2026-06-07T16:53:26Z"
},
"sender": {
"login": "chatgpt-codex-connector[bot]",
"id": 199175422,
"node_id": "BOT_kgDOC98s_g",
"avatar_url": "https://avatars.githubusercontent.com/in/1144995?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D",
"html_url": "https://github.com/apps/chatgpt-codex-connector",
"followers_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/chatgpt-codex-connector%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"installation": {
"id": 131074261,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
}
}