Binary Cache: Difference between revisions
imported>Heywoodlh m MacOS/Nix-Darwin links |
imported>Epetousis m Fix outdated nixConfig syntax |
||
| Line 178: | Line 178: | ||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
{ | { | ||
nixConfig = { | |||
extra-substituters = [ | |||
"https://colmena.cachix.org" | |||
]; | |||
extra-trusted-public-keys = [ | |||
"colmena.cachix.org-1:7BzpDnjjH8ki2CT3f6GdOk7QAzPOl+1t3LvTLXqYcSg=" | |||
]; | |||
}; | |||
outputs = { ... }: { | outputs = { ... }: { | ||
... | |||
}; | }; | ||
} | } | ||