diff options
author | Alan Pearce | 2024-04-09 20:02:12 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-09 20:02:12 +0200 |
commit | 10e41ec96f7792ad50ba162bf97ae189fd01623c (patch) | |
tree | 041016a8274aa63ac5580d477c17862fd2203e14 | |
parent | 3ad31455063ca519d3552877684f12488e37ae8d (diff) | |
download | nixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.tar.lz nixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.tar.zst nixfiles-10e41ec96f7792ad50ba162bf97ae189fd01623c.zip |
Use deploy-rs cachix instance
-rw-r--r-- | system/settings/programs/base.nix | 10 |
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=" + ]; }; } |