summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2024-04-09 20:02:12 +0200
committerAlan Pearce2024-04-09 20:02:12 +0200
commit10e41ec96f7792ad50ba162bf97ae189fd01623c (patch)
tree041016a8274aa63ac5580d477c17862fd2203e14 /system
parent3ad31455063ca519d3552877684f12488e37ae8d (diff)
downloadnixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.tar.lz
nixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.tar.zst
nixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.zip
Use deploy-rs cachix instance
Diffstat (limited to 'system')
-rw-r--r--system/settings/programs/base.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/system/settings/programs/base.nix b/system/settings/programs/base.nix
index 1137f92e..6b5304f9 100644
--- a/system/settings/programs/base.nix
+++ b/system/settings/programs/base.nix
@@ -9,7 +9,13 @@
     zstd
   ];
   nix.settings = {
-    trusted-substituters = [ "https://nix-community.cachix.org" ];
-    trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
+    substituters = [
+      "https://nix-community.cachix.org"
+      "https://deploy-rs.cachix.org"
+    ];
+    trusted-public-keys = [
+      "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+      "deploy-rs.cachix.org-1:xfNobmiwF/vzvK1gpfediPwpdIP0rpDV2rYqx40zdSI="
+    ];
   };
 }