{"id":37612137,"url":"https://github.com/jacopone/code-cursor-nix","last_synced_at":"2026-02-23T11:40:03.727Z","repository":{"id":317463214,"uuid":"1067527649","full_name":"jacopone/code-cursor-nix","owner":"jacopone","description":"Auto-updating Nix package for Cursor AI editor with browser automation (Playwright/Puppeteer/Selenium). Updates 3x/week. Chrome bundled for NixOS testing.","archived":false,"fork":false,"pushed_at":"2026-02-13T09:39:07.000Z","size":94,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-13T20:49:54.459Z","etag":null,"topics":["ai-editor","ai-tools","auto-update","browser-automation","chromium","code-editor","cursor","cursor-ai","fhs-environment","flakes","github-actions","nix","nix-flakes","nix-packages","nixos","playwright","puppeteer","selenium","vscode-fork","web-testing"],"latest_commit_sha":null,"homepage":"https://cursor.com","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacopone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-01T01:42:15.000Z","updated_at":"2026-02-13T09:21:40.000Z","dependencies_parsed_at":"2025-10-30T16:36:53.201Z","dependency_job_id":"e36a34ce-1f46-4c73-b1ce-2ed131ea9217","html_url":"https://github.com/jacopone/code-cursor-nix","commit_stats":null,"previous_names":["jacopone/cursor-nix"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/jacopone/code-cursor-nix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacopone%2Fcode-cursor-nix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacopone%2Fcode-cursor-nix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacopone%2Fcode-cursor-nix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacopone%2Fcode-cursor-nix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacopone","download_url":"https://codeload.github.com/jacopone/code-cursor-nix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacopone%2Fcode-cursor-nix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29741689,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-editor","ai-tools","auto-update","browser-automation","chromium","code-editor","cursor","cursor-ai","fhs-environment","flakes","github-actions","nix","nix-flakes","nix-packages","nixos","playwright","puppeteer","selenium","vscode-fork","web-testing"],"created_at":"2026-01-16T10:24:32.928Z","updated_at":"2026-02-23T11:40:03.659Z","avatar_url":"https://github.com/jacopone.png","language":"Shell","readme":"# code-cursor-nix\n\nAuto-updating Nix Flake for Cursor AI editor -- AppImage extraction, FHS environment, browser automation included.\n\n[![Update Cursor](https://github.com/jacopone/code-cursor-nix/actions/workflows/update.yml/badge.svg)](https://github.com/jacopone/code-cursor-nix/actions/workflows/update.yml)\n\n## What This Provides\n\n- **FHS environment** wrapping the upstream AppImage with all required libraries\n- **Automated updates** via GitHub Actions (3x/week), with hash verification and build testing\n- **Multi-platform** support for x86_64-linux, aarch64-linux, x86_64-darwin, and aarch64-darwin\n- **Browser automation** on Linux -- bundles Chrome with `CHROME_BIN`/`CHROME_PATH` set for Playwright, Puppeteer, and Selenium\n\n## Quick Start\n\n```bash\nnix run github:jacopone/code-cursor-nix\n```\n\n## Installation\n\n### NixOS Configuration\n\nAdd to your `flake.nix`:\n\n```nix\n{\n  inputs = {\n    nixpkgs.url = \"github:NixOS/nixpkgs/nixos-unstable\";\n    code-cursor-nix.url = \"github:jacopone/code-cursor-nix\";\n  };\n\n  outputs = { self, nixpkgs, code-cursor-nix, ... }: {\n    nixosConfigurations.your-hostname = nixpkgs.lib.nixosSystem {\n      system = \"x86_64-linux\";\n      modules = [\n        {\n          environment.systemPackages = [\n            code-cursor-nix.packages.x86_64-linux.cursor\n          ];\n        }\n      ];\n    };\n  };\n}\n```\n\n### Home Manager\n\n```nix\n{\n  inputs = {\n    nixpkgs.url = \"github:NixOS/nixpkgs/nixos-unstable\";\n    home-manager.url = \"github:nix-community/home-manager\";\n    code-cursor-nix.url = \"github:jacopone/code-cursor-nix\";\n  };\n\n  outputs = { self, nixpkgs, home-manager, code-cursor-nix, ... }: {\n    homeConfigurations.your-user = home-manager.lib.homeManagerConfiguration {\n      pkgs = nixpkgs.legacyPackages.x86_64-linux;\n      modules = [\n        {\n          home.packages = [\n            code-cursor-nix.packages.x86_64-linux.cursor\n          ];\n        }\n      ];\n    };\n  };\n}\n```\n\n## Version Pinning\n\n```nix\n# Follow latest (recommended)\ninputs.code-cursor-nix.url = \"github:jacopone/code-cursor-nix\";\n\n# Pin to a specific release\ninputs.code-cursor-nix.url = \"github:jacopone/code-cursor-nix/v2.0.34\";\n```\n\nUpdate to the latest version:\n\n```bash\nnix flake update code-cursor-nix\n```\n\nAll releases: https://github.com/jacopone/code-cursor-nix/releases\n\n## Requirements\n\n- Nix with flakes enabled\n- `allowUnfree = true` (Cursor is proprietary software)\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Test with `nix build .#cursor` and `nix flake check`\n4. Submit a pull request\n\n## License\n\nMIT License -- see [LICENSE](LICENSE) for details.\n\nCursor is proprietary software by Anysphere Inc. This is an unofficial package, not affiliated with or endorsed by Anysphere.\n","funding_links":[],"categories":["others"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacopone%2Fcode-cursor-nix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacopone%2Fcode-cursor-nix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacopone%2Fcode-cursor-nix/lists"}