Payload
{
"action": "created",
"comment": {
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3389707353",
"pull_request_review_id": 4469468315,
"id": 3389707353,
"node_id": "PRRC_kwDOSB6EzM7KCtRZ",
"diff_hunk": "@@ -0,0 +1,327 @@\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\"\n+\t\tprintf '%s\\t%s\\t%s\\n' \"$file\" \"$dependency\" \"$portable_dependency\" >>\"$REWRITES_FILE\"\n+\tdone <\"$dependencies_output\"\n+}\n+\n+normalize_app() {\n+\tlocal app_path=\"$1\"\n+\n+\tif [ ! -d \"$app_path\" ]; then\n+\t\techo \"ERROR: app path does not exist: $app_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\techo \"Normalizing macOS install names in $app_path\"\n+\twhile IFS= read -r -d '' file; do\n+\t\tnormalize_macho_file \"$file\"\n+\tdone < <(find \"$app_path\" -type f -print0)\n+}\n+\n+sign_app_if_certificate_available() {\n+\tlocal app_path=\"$1\"\n+\tlocal keychain_path\n+\tlocal identity\n+\n+\tif [ -z \"${RUNNER_TEMP:-}\" ]; then\n+\t\techo \"No GitHub Actions temp directory available; skipping code signing for $app_path.\"\n+\t\treturn\n+\tfi\n+\n+\tkeychain_path=\"${RUNNER_TEMP}/app-signing.keychain-db\"\n+\tif [ ! -f \"$keychain_path\" ]; then\n+\t\techo \"No code-signing keychain found; skipping code signing for $app_path.\"\n+\t\treturn\n+\tfi\n+\n+\tif ! command -v security >/dev/null 2>&1; then\n+\t\techo \"ERROR: security is required to code sign $app_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\tif ! command -v codesign >/dev/null 2>&1; then\n+\t\techo \"ERROR: codesign is required to code sign $app_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\tidentity=$(security find-identity -v -p codesigning \"$keychain_path\" | grep \"Developer ID Application\" | head -1 | sed 's/.*\"\\(.*\\)\".*/\\1/')\n+\tif [ -z \"$identity\" ]; then\n+\t\techo \"ERROR: No Developer ID Application identity found in keychain\" >&2\n+\t\tsecurity find-identity -v -p codesigning \"$keychain_path\" >&2\n+\t\texit 1\n+\tfi\n+\n+\techo \"Code signing normalized app: $app_path\"\n+\tcodesign --force --deep --options runtime \\\n+\t\t--entitlements \"$ENTITLEMENTS_PATH\" \\\n+\t\t--sign \"$identity\" \\\n+\t\t\"$app_path\"\n+\n+\techo \"Verifying normalized app signature: $app_path\"\n+\tcodesign --verify --verbose \"$app_path\"\n+}\n+\n+normalize_dmg() {\n+\tlocal dmg_path=\"$1\"\n+\tlocal mount_point\n+\tlocal rw_dmg\n+\tlocal normalized_dmg\n+\tlocal app_count\n+\tlocal current_kb\n+\tlocal resized_kb\n+\n+\tmount_point=\"$TMP_DIR/mnt-$(basename \"$dmg_path\" .dmg)\"\n+\trw_dmg=\"$TMP_DIR/$(basename \"$dmg_path\" .dmg).rw.dmg\"\n+\tnormalized_dmg=\"$TMP_DIR/$(basename \"$dmg_path\")\"\n+\n+\tif ! command -v hdiutil >/dev/null 2>&1; then\n+\t\techo \"ERROR: hdiutil is required to normalize DMG install names\" >&2\n+\t\texit 2\n+\tfi\n+\n+\tif [ ! -f \"$dmg_path\" ]; then\n+\t\techo \"ERROR: DMG path does not exist: $dmg_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\techo \"Converting DMG to read-write for install-name normalization: $dmg_path\"\n+\thdiutil convert \"$dmg_path\" -format UDRW -o \"$rw_dmg\" >/dev/null\n+\n+\t# install_name_tool writes a temporary replacement next to each Mach-O file.\n+\t# Tauri's compressed DMG can be exactly full, so grow the RW image before\n+\t# mounting it or the in-place rewrite can fail with \"No space left on device\".\n+\tcurrent_kb=$(du -k \"$rw_dmg\" | awk '{print $1}')\n+\tresized_kb=$((current_kb + 102400))\n+\thdiutil resize -size \"${resized_kb}k\" \"$rw_dmg\" >/dev/null\n+\n+\tmkdir -p \"$mount_point\"\n+\thdiutil attach -readwrite -nobrowse -noautoopen -mountpoint \"$mount_point\" \"$rw_dmg\" >/dev/null\n+\tprintf '%s\\n' \"$mount_point\" >>\"$MOUNTS_FILE\"\n+\n+\tapp_count=$(find \"$mount_point\" -maxdepth 2 -name \"*.app\" -type d | wc -l | tr -d '[:space:]')\n+\tif [ \"$app_count\" -eq 0 ]; then\n+\t\techo \"ERROR: no .app bundle found in $dmg_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\twhile IFS= read -r app_path; do\n+\t\tnormalize_app \"$app_path\"\n+\tdone < <(find \"$mount_point\" -maxdepth 2 -name \"*.app\" -type d)\n+\n+\tdetach_with_retry \"$mount_point\"\n+\n+\techo \"Re-compressing normalized DMG: $dmg_path\"\n+\thdiutil convert \"$rw_dmg\" -format UDZO -imagekey zlib-level=9 -o \"$normalized_dmg\" >/dev/null\n+\tmv \"$normalized_dmg\" \"$dmg_path\"\n+}\n+\n+refresh_updater_signature() {\n+\tlocal tar_path=\"$1\"\n+\tlocal sig_path=\"${tar_path}.sig\"\n+\tlocal absolute_tar_path\n+\n+\tif [ ! -f \"$sig_path\" ]; then\n+\t\techo \"No updater signature found for $tar_path; skipping signature refresh.\"\n+\t\treturn\n+\tfi\n+\n+\tif [ -z \"${TAURI_SIGNING_PRIVATE_KEY:-}\" ] && [ -z \"${TAURI_SIGNING_PRIVATE_KEY_PATH:-}\" ]; then\n+\t\techo \"ERROR: $sig_path exists but no Tauri signing key is available to refresh it after repacking $tar_path\" >&2\n+\t\texit 2\n+\tfi\n+\n+\tabsolute_tar_path=$(absolute_path \"$tar_path\")\n+\n+\techo \"Refreshing updater signature: $sig_path\"\n+\tif command -v bun >/dev/null 2>&1 && [ -x \"$REPO_ROOT/apps/native/node_modules/.bin/tauri\" ]; then\n+\t\tbun --cwd \"$REPO_ROOT/apps/native\" tauri signer sign \"$absolute_tar_path\"",
"path": "ops/scripts/release/normalize-macos-install-names.sh",
"commit_id": "0ce863d212ee05f76d07352f60e5a5d1947f6450",
"original_commit_id": "556b682d7d236d107ea9fcd1456c42fc45cae232",
"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": "Addressed on current head `7a1e39ae`: after repacking, the script invokes `tauri signer sign \"$absolute_tar_path\"` and lets Tauri write `${tar_path}.sig` in place, then validates that the `.sig` file is non-empty and changed. We should not capture stdout here; this CLI prints status text there.",
"created_at": "2026-06-10T15:57:07Z",
"updated_at": "2026-06-10T15:57:07Z",
"html_url": "https://github.com/darkmatter/nixmac/pull/354#discussion_r3389707353",
"pull_request_url": "https://api.github.com/repos/darkmatter/nixmac/pulls/354",
"_links": {
"self": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3389707353"
},
"html": {
"href": "https://github.com/darkmatter/nixmac/pull/354#discussion_r3389707353"
},
"pull_request": {
"href": "https://api.github.com/repos/darkmatter/nixmac/pulls/354"
}
},
"reactions": {
"url": "https://api.github.com/repos/darkmatter/nixmac/pulls/comments/3389707353/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": null,
"original_line": 252,
"side": "RIGHT",
"in_reply_to_id": 3384127459,
"author_association": "CONTRIBUTOR",
"original_position": 252,
"position": 1,
"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-10T15:57:07Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "30358fc8b48b1fb894ebd77c6ecf0f48db500ab2",
"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/7a1e39ae7c0939dfb97d108e5752d0862e59a8df",
"head": {
"label": "darkmatter:fkb/eng-494-guided-nix-setup",
"ref": "fkb/eng-494-guided-nix-setup",
"sha": "7a1e39ae7c0939dfb97d108e5752d0862e59a8df",
"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-10T15:52:50Z",
"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": 681556,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 83,
"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": 83,
"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-10T15:52:50Z",
"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": 681556,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 83,
"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": 83,
"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/7a1e39ae7c0939dfb97d108e5752d0862e59a8df"
}
},
"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-10T15:52:50Z",
"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": 681556,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 83,
"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": 83,
"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": "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
},
"installation": {
"id": 131074261,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
}
}