{"id":28299154,"url":"https://github.com/applicative-systems/nxbd","last_synced_at":"2025-07-28T08:39:38.631Z","repository":{"id":277559893,"uuid":"932804182","full_name":"applicative-systems/nxbd","owner":"applicative-systems","description":"NixOS Build and Deployment Tool with Configuration Sanity Checking Capabilities [maintainer=@tfc]","archived":false,"fork":false,"pushed_at":"2025-05-21T17:09:22.000Z","size":172,"stargazers_count":10,"open_issues_count":5,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T20:44:08.987Z","etag":null,"topics":["deployment","nix","nix-flake","nixos","nixos-config","nixos-configuration"],"latest_commit_sha":null,"homepage":"https://applicative.systems/nxbd","language":"Rust","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/applicative-systems.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}},"created_at":"2025-02-14T14:54:33.000Z","updated_at":"2025-05-21T17:09:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"235b8a69-67dc-4da2-8ba3-8fb41688a888","html_url":"https://github.com/applicative-systems/nxbd","commit_stats":null,"previous_names":["applicative-systems/nxbd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/applicative-systems/nxbd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/applicative-systems%2Fnxbd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/applicative-systems%2Fnxbd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/applicative-systems%2Fnxbd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/applicative-systems%2Fnxbd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/applicative-systems","download_url":"https://codeload.github.com/applicative-systems/nxbd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/applicative-systems%2Fnxbd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267486528,"owners_count":24095444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"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":["deployment","nix","nix-flake","nixos","nixos-config","nixos-configuration"],"created_at":"2025-05-23T07:20:25.443Z","updated_at":"2025-07-28T08:39:38.589Z","avatar_url":"https://github.com/applicative-systems.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# nxbd\n\nThe smart NixOS Configuration Check, Build, and Deploy Tool\n\n**Developed and maintained by [Applicative Systems](https://applicative.systems/) and [Nixcademy](https://nixcademy.com/)**\n\n\u003cp\u003e\n\u003ca href=\"https://github.com/applicative-systems/nxbd/actions/workflows/check.yml\"\u003e\u003cimg src=\"https://github.com/applicative-systems/nxbd/actions/workflows/check.yml/badge.svg\"/\u003e\u003c/a\u003e\n\u003ca href=\"https://matrix.to/#/#applicative.systems:matrix.org\"\u003e\u003cimg src=\"https://img.shields.io/badge/Support-%23applicative.systems-blue\"/\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003c/div\u003e\n\n`nxbd` is a lightweight, safety-focused NixOS deployment tool that helps you manage multiple NixOS systems with confidence. It validates your configurations before deployment to prevent common pitfalls and system lockouts.\n\n## Why nxbd?\n\n- **Zero Configuration**: Works with vanilla NixOS configurations - no special code or extra files needed\n- **Safety First**: Prevents common deployment issues before they happen\n- **Smart Deployment**: Handles complex deployment scenarios automatically\n- **System Health**: Built-in monitoring and status checks\n\n### What Problems Does It Solve?\n\nWhile tools like `nixos-rebuild` handle deployment, they don't validate whether your configuration is safe to deploy. `nxbd` prevents common issues like:\n\n- SSH access lockouts\n- Broken sudo permissions\n- Wrong system deployments\n- Misconfigured critical services\n- Disk space waste\n- Service configuration errors\n\n## Quick Start\n\n```bash\n# Check configuration safety\nnxbd check\n\n# Deploy to remote systems\nnxbd switch-remote .#server1 .#server2\n\n# Monitor system status\nnxbd status\n```\n\n## Installation\n\n### Quick Run\n\n```bash\nnix run github:applicative-systems/nxbd\n```\n\n### Add to flake.nix\n\n```nix\n{\n  inputs.nxbd.url = \"github:applicative-systems/nxbd\";\n\n  outputs = { self, nixpkgs, nxbd }: {\n    # For your packages\n    packages.x86_64-linux.nxbd = nxbd.packages.x86_64-linux.default;\n\n    # Or in your NixOS configuration\n    nixosConfigurations.hostname = nixpkgs.lib.nixosSystem {\n      modules = [\n        { environment.systemPackages = [ nxbd.packages.x86_64-linux.default ]; }\n      ];\n    };\n  };\n}\n```\n\n### Direct Installation\n\n```bash\nnix profile install github:applicative-systems/nxbd\n```\n\n## Requirements\n\n- Nix with flakes enabled\n- SSH agent with keys (for remote deployment)\n- Sudo access on target systems\n\n## Documentation\n\nVisit our [documentation site](https://applicative.systems/nxbd/) for:\n\n- Detailed command reference\n- Configuration check explanations\n- Best practices and guides\n- Example configurations\n\n## Professional Services\n\nWe offer commercial support to help you succeed with `nxbd`:\n\n- **Custom Development**: Tailored features for your needs\n- **Integration Support**: Help with your deployment workflows\n- **Training**: Expert guidance for your team\n- **Consulting**: Infrastructure optimization\n\nContact us:\n\n- 📧 [hello@applicative.systems](mailto:hello@applicative.systems)\n- 🤝 [Schedule a meeting](https://nixcademy.com/meet)\n\n## Community\n\n- Join our [Matrix channel](https://matrix.to/#/#applicative.systems:matrix.org)\n- Report issues on [GitHub](https://github.com/applicative-systems/nxbd/issues)\n- Contribute via [Pull Requests](https://github.com/applicative-systems/nxbd/pulls)\n\n## License\n\n[MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplicative-systems%2Fnxbd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapplicative-systems%2Fnxbd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplicative-systems%2Fnxbd/lists"}