22 lines
580 B
Markdown
22 lines
580 B
Markdown
# The portable binary cache
|
||
|
||
This is an experiment of a portable binary cache with deduplication via Tvix.
|
||
|
||
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=" ];
|
||
```
|