about summary refs log tree commit diff
path: root/modules/cachix
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-12-09 14:26:12 +0900
committersefidel <contact@sefidel.net>2023-12-20 17:01:12 +0900
commit4a1c21639ede880ceaf4b33616464cf4505cc3ba (patch)
treee9ea6d5a5a9f0a737cc37736c16da2c7649fb260 /modules/cachix
parent0ef47a3c1b182776f4378035219850de4e7bd925 (diff)
downloadnixrc-4a1c21639ede880ceaf4b33616464cf4505cc3ba.tar.gz
nixrc-4a1c21639ede880ceaf4b33616464cf4505cc3ba.zip
feat(modules/cachix): add nix-gaming
Diffstat (limited to 'modules/cachix')
-rw-r--r--modules/cachix/caches/nix-gaming.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/cachix/caches/nix-gaming.nix b/modules/cachix/caches/nix-gaming.nix
new file mode 100644
index 0000000..c02bc5f
--- /dev/null
+++ b/modules/cachix/caches/nix-gaming.nix
@@ -0,0 +1,12 @@
+{ config, lib, ... }:
+
+{
+  nix.settings = {
+    substituters = [
+      "https://nix-gaming.cachix.org"
+    ];
+    trusted-public-keys = [
+      "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
+    ];
+  };
+}