Commit 168f786ca973
Changed files (1)
systems
systems/default.nix
@@ -76,6 +76,22 @@
];
# See https://nixos.org/manual/nix/stable/command-ref/conf-file#conf-use-xdg-base-directories
use-xdg-base-directories = true;
+
+ # Add some "caches" (substituters)
+ substituters = [
+ "https://cache.nixos.org/"
+ "https://r-ryantm.cachix.org"
+ "https://shortbrain.cachix.org"
+ "https://vdemeester.cachix.org"
+ "https://chapeau-rouge.cachix.org"
+ ];
+ trusted-public-keys = [
+ "r-ryantm.cachix.org-1:gkUbLkouDAyvBdpBX0JOdIiD2/DP1ldF3Z3Y6Gqcc4c="
+ "shortbrain.cachix.org-1:dqXcXzM0yXs3eo9ChmMfmob93eemwNyhTx7wCR4IjeQ="
+ "mic92.cachix.org-1:gi8IhgiT3CYZnJsaW7fxznzTkMUOn1RY4GmXdT/nXYQ="
+ "chapeau-rouge.cachix.org-1:r34IG766Ez4Eeanr7Zx+egzXLE2Zgvc+XRspYZPDAn8="
+ "vdemeester.cachix.org-1:eZWNOrLR9A9szeMahn9ENaoT9DB3WgOos8va+d2CU44="
+ ];
};
extraOptions = ''
@@ -90,22 +106,6 @@
# to have a responding system while building
daemonIOSchedClass = "idle";
daemonCPUSchedPolicy = "idle";
-
- # Add some "caches" (substituters)
- substituters = [
- "https://cache.nixos.org/"
- "https://r-ryantm.cachix.org"
- "https://shortbrain.cachix.org"
- "https://vdemeester.cachix.org"
- "https://chapeau-rouge.cachix.org"
- ];
- trusted-public-keys = [
- "r-ryantm.cachix.org-1:gkUbLkouDAyvBdpBX0JOdIiD2/DP1ldF3Z3Y6Gqcc4c="
- "shortbrain.cachix.org-1:dqXcXzM0yXs3eo9ChmMfmob93eemwNyhTx7wCR4IjeQ="
- "mic92.cachix.org-1:gi8IhgiT3CYZnJsaW7fxznzTkMUOn1RY4GmXdT/nXYQ="
- "chapeau-rouge.cachix.org-1:r34IG766Ez4Eeanr7Zx+egzXLE2Zgvc+XRspYZPDAn8="
- "vdemeester.cachix.org-1:eZWNOrLR9A9szeMahn9ENaoT9DB3WgOos8va+d2CU44="
- ];
};
# `nix-daemon` will hit the stack limit when using `nixFlakes`.