nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

commit 80f0f019d528db308ef77f7ad05e1005cef2ba8c
parent 7a2e9fe2143ef4a5082a599e32efc20ca443af8c
Author: mtmn <miro@haravara.org>
Date:   Mon,  8 Jun 2026 17:47:26 +0200

nix: add cachix binary cache

Diffstat:
Mhosts/void/default.nix | 1+
Mlib/nix-cache.nix | 2++
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/hosts/void/default.nix b/hosts/void/default.nix @@ -121,6 +121,7 @@ nvd lorri attic-client + cachix ]; beam = lib.concatLists [ diff --git a/lib/nix-cache.nix b/lib/nix-cache.nix @@ -2,9 +2,11 @@ substituters = [ "https://cache.nixos.org" "https://nix-community.cachix.org" + "https://metafori.cachix.org" ]; trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "metafori.cachix.org-1:7bVzjJMOSvSotxsB19L/HIR+E+hzqDh0xPZ4fNsA8k8=" ]; }