diff --git a/docs/cache.md b/docs/cache.md new file mode 100644 index 0000000..f0123b6 --- /dev/null +++ b/docs/cache.md @@ -0,0 +1,13 @@ +[https://nix-community.cachix.org/](https://nix-community.cachix.org/) + +```nix +{ + nix.settings.substituters = [ + "https://nix-community.cachix.org" + ]; + + nix.settings.trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; +} +``` diff --git a/docs/continuous-integration.md b/docs/continuous-integration.md index 79448d5..69af963 100644 --- a/docs/continuous-integration.md +++ b/docs/continuous-integration.md @@ -33,6 +33,6 @@ To enable hydra add a new project in this [file](https://github.com/nix-communit #### Cache -[https://nix-community.cachix.org/](https://nix-community.cachix.org/) +All of the above builds are pushed to the cache. -All of the above CI builds are pushed to the cache. +See [here](./cache.md) for details. diff --git a/docs/package-sets.md b/docs/package-sets.md new file mode 100644 index 0000000..d331fc8 --- /dev/null +++ b/docs/package-sets.md @@ -0,0 +1,15 @@ +#### Nixpkgs CUDA and ROCm + +Built on `nixos-unstable-small` for `x86_64-linux`, `aarch64-linux`. + +[CUDA and ROCm release set in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/release-cuda.nix) + +[https://hydra.nix-community.org/jobset/nixpkgs/cuda](https://hydra.nix-community.org/jobset/nixpkgs/cuda) + +[https://hydra.nix-community.org/jobset/nixpkgs/rocm](https://hydra.nix-community.org/jobset/nixpkgs/rocm) + +#### Cache + +All of the above builds are pushed to the cache. + +See [here](./cache.md) for details. diff --git a/mkdocs.yml b/mkdocs.yml index dbc5a39..926f16f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,6 +5,8 @@ nav: - Services: - continuous-integration.md - Faster GitHub Actions: namespace-actions.md + - package-sets.md + - cache.md - community-builder.md - R. RyanTM nixpkgs-update bot: update-bot.md - NUR update: nur-update.md