aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-11-30 17:46:38 -0800
committerFranck Cuny <franck@fcuny.net>2022-11-30 17:47:00 -0800
commitc947af9db81bae4ee9fcd5eb6b9a88bb7a4a662c (patch)
tree1975c5b903970c186fcfe5755ab408630c25f00d /modules
parentfeat(hosts/tahoe): enable `sendsms` module (diff)
downloadinfra-c947af9db81bae4ee9fcd5eb6b9a88bb7a4a662c.tar.gz
feat(modules/nix): add binary caches
Diffstat (limited to '')
-rw-r--r--modules/system/nix/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/system/nix/default.nix b/modules/system/nix/default.nix
index 2ad20c3..ad6bb8d 100644
--- a/modules/system/nix/default.nix
+++ b/modules/system/nix/default.nix
@@ -8,6 +8,16 @@
autoOptimiseStore = true;
trustedUsers = [ "root" "@wheel" ];
+ binaryCaches = [
+ "https://cachix.cachix.org"
+ "https://nix-community.cachix.org"
+ ];
+
+ binaryCachePublicKeys = [
+ "cachix.cachix.org-1:eWNHQldwUO7G2VkjpnjDbWwy4KQ/HNxht7H4SSoMckM="
+ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+ ];
+
gc = {
automatic = true;
options = "--delete-older-than 14d";