From 3243829f1fb354f4db018f3144c7af815e5e264f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 21 Nov 2023 20:27:11 -0700 Subject: [PATCH] [NixOS] Use updated settings paths for extra nix cache --- nixos/nix.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/nix.nix b/nixos/nix.nix index 7bacdacf..1c78cd76 100644 --- a/nixos/nix.nix +++ b/nixos/nix.nix @@ -27,19 +27,19 @@ settings = { keep-outputs = true; keep-derivations = true; + substituters = [ + "https://cache.nixos.org" + "https://cache.railbird.ai" + ]; + trusted-public-keys = [ + "cache.railbird.ai:KhnvcouxtIU2zxUcjJsm4bUK3o1S3p8xMf9qfZGF7/A=" + ]; + nix-path = nixPath; }; channel.enable = false; nixPath = [ "nixpkgs=${inputs.nixpkgs.outPath}" ]; - settings.nix-path = nixPath; - binaryCaches = [ - "https://cache.nixos.org" - "https://cache.railbird.ai" - ]; - binaryCachePublicKeys = [ - "cache.railbird.ai:KhnvcouxtIU2zxUcjJsm4bUK3o1S3p8xMf9qfZGF7/A=" - ]; }; nixpkgs.overlays = [