├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── merge-staging.yml │ ├── monthly.yml │ ├── pr.yml │ └── update.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── beta.json ├── nightly.json ├── rust-analyzer-vsix.zip └── stable.json ├── default.nix ├── flake.lock ├── flake.nix ├── lib ├── combine.nix └── mk-toolchain.nix ├── overlay.nix ├── test └── update /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/merge-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/workflows/merge-staging.yml -------------------------------------------------------------------------------- /.github/workflows/monthly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/workflows/monthly.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/README.md -------------------------------------------------------------------------------- /data/beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/data/beta.json -------------------------------------------------------------------------------- /data/nightly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/data/nightly.json -------------------------------------------------------------------------------- /data/rust-analyzer-vsix.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/data/rust-analyzer-vsix.zip -------------------------------------------------------------------------------- /data/stable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/data/stable.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/combine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/lib/combine.nix -------------------------------------------------------------------------------- /lib/mk-toolchain.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/lib/mk-toolchain.nix -------------------------------------------------------------------------------- /overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/overlay.nix -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/test -------------------------------------------------------------------------------- /update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/fenix/HEAD/update --------------------------------------------------------------------------------