From 05d57602c4bf244dfe7c7d26569a795280c10b21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Bon=C3=A9?= Date: Wed, 26 Feb 2025 18:22:43 +0100 Subject: [PATCH] Add instructions on how to use the cache in the web --- web/content/cache/_index.md | 68 +++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 web/content/cache/_index.md diff --git a/web/content/cache/_index.md b/web/content/cache/_index.md new file mode 100644 index 0000000..541c1aa --- /dev/null +++ b/web/content/cache/_index.md @@ -0,0 +1,68 @@ +--- +title: "Cache" +description: "nix binary cache" +date: 2025-02-26T17:37:19+0100 +--- + +We provide a binary cache in `hut`, with the aim of avoiding unnecessary +recompilation of packages. + +The cache should contain common packages from bsckpkgs, but we don't provide +any guarantee that of what will be available in the cache, or for how long. +We recommend following the latest version of the `jungle` flake to avoid cache +misses. + +## Usage + +### From NixOS + +In NixOS, we can add the cache through the `nix.settings` option, which will +enable it for all builds in the system. + +```nix +{ ... }: { + nix.settings = { + substituters = [ "https://jungle.bsc.es" ]; + trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ]; + }; +} +``` + +### Interactively + +The cache can also be specified in a per-command basis through the flags +`--substituters` and `--trusted-public-keys`: + +```sh +nix build --substituters "https://jungle.bsc.es/cache" --trusted-public-keys "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" <...> +``` + +### Nix configuration file (non-nixos) + +If using nix outside of NixOS, you'll have to update `nix.conf` + +```bash +echo "substituters = https://jungle.bsc.es" >> /etc/nix/nix.conf +echo "trusted-public-keys = jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" >> /etc/nix/nix.conf +``` + +### Hint in flakes + +By adding the configuration below to a `flake.nix`, when someone uses the flake, +`nix` will interactively ask to trust and use the provided binary cache: + +```nix +{ + nixConfig = { + extra-substituters = [ + "https://jungle.bsc.es/cache" + ]; + extra-trusted-public-keys = [ + "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" + ]; + }; + outputs = { ... }: { + ... + }; +} +```