{"id":50331875,"url":"https://github.com/kmdtaufik/nix4gitbutler","last_synced_at":"2026-05-29T10:02:31.837Z","repository":{"id":350514365,"uuid":"1164046636","full_name":"kmdtaufik/nix4gitbutler","owner":"kmdtaufik","description":"GitButler Binaries for Nix","archived":false,"fork":false,"pushed_at":"2026-05-09T06:13:05.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-09T08:26:49.259Z","etag":null,"topics":["butler","cli","git","gitbutler","nix","nixos"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kmdtaufik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-02-22T15:03:00.000Z","updated_at":"2026-05-09T06:13:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kmdtaufik/nix4gitbutler","commit_stats":null,"previous_names":["kmdtaufik/nix4gitbutler"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kmdtaufik/nix4gitbutler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmdtaufik%2Fnix4gitbutler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmdtaufik%2Fnix4gitbutler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmdtaufik%2Fnix4gitbutler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmdtaufik%2Fnix4gitbutler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kmdtaufik","download_url":"https://codeload.github.com/kmdtaufik/nix4gitbutler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmdtaufik%2Fnix4gitbutler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33646428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["butler","cli","git","gitbutler","nix","nixos"],"created_at":"2026-05-29T10:02:30.799Z","updated_at":"2026-05-29T10:02:31.826Z","avatar_url":"https://github.com/kmdtaufik.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# nix4gitbutler\n\n\u003cimg width=\"100px\" src=\"https://gitbutler-docs-images-public.s3.us-east-1.amazonaws.com/md-logo.png\" alt=\"GitButler logo\" /\u003e\n\n**A Nix flake providing pre-compiled binaries for GitButler (GUI \u0026 CLI)**\n\n[![NixOS](https://img.shields.io/badge/NixOS-5277C3?logo=nixos\u0026logoColor=white)](https://nixos.org/)\n[![GitButler](https://img.shields.io/badge/GitButler-CLI-blue)](https://gitbutler.com)\n\n\u003c/div\u003e\n\n---\n\n## About GitButler\n\n**GitButler** is a modern Git-based version control interface built from the ground up for AI-powered workflows. This flake pulls the official upstream `.deb` and CLI binaries and patches them for NixOS, completely bypassing the heavy Rust/Tauri compile times.\n\n### Available Packages\n\nThis flake exposes two explicit outputs:\n\n- `gui` (Default): The full Tauri desktop application. This package _also_ includes the `but` CLI wrapper.\n- `cli`: The standalone, lightweight Rust binary (`but`) for terminal-only workflows.\n\n🚨 **IMPORTANT: Mutual Exclusivity** 🚨\nDo **not** attempt to install both the `gui` and `cli` packages simultaneously. Because both packages provide the `/bin/but` executable, Nix's native environment builder will throw a file collision error and refuse to build your system. Choose one or the other.\n\n---\n\n## Installation\n\n### NixOS Configuration (Flake)\n\nAdd the flake to your `flake.nix` inputs:\n\n```nix\n{\n  inputs = {\n    nixpkgs.url = \"github:nixos/nixpkgs/nixos-unstable\";\n    nix4gitbutler.url = \"github:kmdtaufik/nix4gitbutler\";\n  };\n\n  outputs = { nixpkgs, inputs, ... }: {\n    nixosConfigurations.yourhostname = nixpkgs.lib.nixosSystem {\n      system = \"x86_64-linux\";\n      modules = [{\n\n        # 🟢 Option A: Install the full Desktop GUI (Default)\n        environment.systemPackages = [\n          inputs.nix4gitbutler.packages.x86_64-linux.default\n        ];\n\n        # 🔵 Option B: Install ONLY the Terminal interface (CLI)\n        # environment.systemPackages = [\n        #   inputs.nix4gitbutler.packages.x86_64-linux.cli\n        # ];\n\n      }];\n    };\n  };\n}\n```\n\n### Home Manager\n\n```nix\n{\n  inputs = {\n    nix4gitbutler.url = \"github:kmdtaufik/nix4gitbutler\";\n  };\n\n  outputs = { inputs, ... }: {\n    home.packages = [\n      inputs.nix4gitbutler.packages.x86_64-linux.default # Choose GUI...\n      # inputs.nix4gitbutler.packages.x86_64-linux.cli   # ...Or CLI\n    ];\n  };\n}\n```\n\n### Try without installing\n\nYou can run either application instantly without modifying your system configuration:\n\n```bash\n# Run the Desktop GUI\nnix run github:kmdtaufik/nix4gitbutler\n\n# Run the pure CLI\nnix run github:kmdtaufik/nix4gitbutler#cli\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmdtaufik%2Fnix4gitbutler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkmdtaufik%2Fnix4gitbutler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmdtaufik%2Fnix4gitbutler/lists"}