summary refs log tree commit diff
path: root/modules/extra-substituters.nix
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-09-08 15:17:08 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-09-08 15:17:08 +0200
commit623c33a30d2987e6366b04bbf63b0e389447a366 (patch)
treefea9264d07e352c0fb029795a470878996cf537d /modules/extra-substituters.nix
parentSome refactoring work... (diff)
downloadRory-Open-Architecture-623c33a30d2987e6366b04bbf63b0e389447a366.tar.xz
works?
Diffstat (limited to 'modules/extra-substituters.nix')
-rw-r--r--modules/extra-substituters.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/extra-substituters.nix b/modules/extra-substituters.nix
new file mode 100644
index 0000000..e6b24a8
--- /dev/null
+++ b/modules/extra-substituters.nix
@@ -0,0 +1,17 @@
+{ config, pkgs, lib, ... }:
+
+{
+  nix.settings.trusted-substituters = [
+    "https://nix-community.cachix.org"
+    "https://cache.garnix.io"
+    "https://numtide.cachix.org"
+  ];
+
+  nix.settings.trusted-public-keys = [
+    "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+    "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
+    "numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE="
+  ];
+
+  system.stateVersion = "22.11"; # DO NOT EDIT!
+}