{"id":49849444,"url":"https://github.com/itpropro/radius-flake","last_synced_at":"2026-05-14T14:06:28.970Z","repository":{"id":346431147,"uuid":"1189845933","full_name":"itpropro/radius-flake","owner":"itpropro","description":"Nix flake to radius project cli","archived":false,"fork":false,"pushed_at":"2026-05-07T18:58:45.000Z","size":30,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-07T20:45:40.827Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/itpropro.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-03-23T18:14:43.000Z","updated_at":"2026-05-07T18:58:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/itpropro/radius-flake","commit_stats":null,"previous_names":["itpropro/radius-flake"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itpropro/radius-flake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2Fradius-flake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2Fradius-flake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2Fradius-flake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2Fradius-flake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itpropro","download_url":"https://codeload.github.com/itpropro/radius-flake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itpropro%2Fradius-flake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33028206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":[],"created_at":"2026-05-14T14:06:25.919Z","updated_at":"2026-05-14T14:06:28.927Z","avatar_url":"https://github.com/itpropro.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# radius-flake\n\nStandalone Nix flake for the `rad` CLI from `radius-project/radius`.\n\n## What It Provides\n\n- stable `rad` package bound to the latest supported stable Radius tag on `main`\n- `rad-rc` package bound to the latest supported Radius prerelease tag on `main`\n- wrapped `rad` binaries that expose Bicep through `BICEP`\n- an overlay for consumers that prefer overlay-based package access\n\n## Install From `main`\n\nUse the stable package:\n\n```nix\n{\n  inputs.radius-flake.url = \"github:itpropro/radius-flake\";\n\n  outputs = { nixpkgs, radius-flake, ... }: {\n    nixosConfigurations.example = nixpkgs.lib.nixosSystem {\n      system = \"x86_64-linux\";\n      modules = [\n        ({ pkgs, ... }: {\n          environment.systemPackages = [\n            radius-flake.packages.${pkgs.stdenv.hostPlatform.system}.rad\n          ];\n        })\n      ];\n    };\n  };\n}\n```\n\nOr use the RC package from `main`:\n\n```nix\nradius-flake.packages.${pkgs.stdenv.hostPlatform.system}.\"rad-rc\"\n```\n\n## Commands\n\n```bash\nnix build .#rad\nnix build .#rad-rc\nnix run .#rad -- --help\nnix run .#rad-rc -- --help\n```\n\n## Home Manager Usage\n\nImport the module from this flake and enable `rad`:\n\n```nix\n{ ... }: {\n  imports = [ radius-flake.homeManagerModules.default ];\n\n  programs.rad.enable = true;\n}\n```\n\nThe module installs this flake's default package, which is stable `rad`.\n\nTo use the RC package explicitly from `main`, override the package:\n\n```nix\n{ pkgs, ... }: {\n  imports = [ radius-flake.homeManagerModules.default ];\n\n  programs.rad = {\n    enable = true;\n    package = radius-flake.packages.${pkgs.stdenv.hostPlatform.system}.\"rad-rc\";\n  };\n}\n```\n\n## Overlay Usage\n\n```nix\n{\n  nixpkgs.overlays = [ radius-flake.overlays.default ];\n}\n```\n\nThis exposes `pkgs.rad`, `pkgs.rad-rc`, and `pkgs.bicep`.\n\n## Notes\n\n- Supported systems in the first iteration are `x86_64-linux` and `aarch64-linux`.\n- CI publishes build outputs to the public Cachix cache at `https://itpropro.cachix.org`.\n- Bicep is bundled as a separate package and wired into `rad` with `BICEP`.\n- The Home Manager module only installs the wrapped CLI package and exposes a package override.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpropro%2Fradius-flake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitpropro%2Fradius-flake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitpropro%2Fradius-flake/lists"}