2024-07-19 16:25:12 +00:00
|
|
|
|
# The portable binary cache
|
2024-07-19 11:08:52 +00:00
|
|
|
|
|
|
|
|
|
This is an experiment of a portable binary cache with deduplication via Tvix.
|
2024-07-19 16:25:12 +00:00
|
|
|
|
|
|
|
|
|
Currently hosted in Bornhack.
|
|
|
|
|
|
|
|
|
|
## `cache.nixos.org`
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
nix.settings.substituters = [ "https://tvix.store/cno/" ];
|
|
|
|
|
nix.settings.trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 🌶️ `cache.forkos.org` 🌶️
|
|
|
|
|
|
|
|
|
|
Don't ask what is this.
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
nix.settings.substituters = [ "https://tvix.store/forkos/" ];
|
|
|
|
|
nix.settings.trusted-public-keys = [ "cache.forkos.org:xfXIUJO1yiEITJmYsVmNDa9BFSlgTh/YqZ+4ei1EhQg=" ];
|
|
|
|
|
```
|