diff options
author | sefidel <contact@sefidel.net> | 2023-12-09 14:26:12 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-12-20 17:01:12 +0900 |
commit | 4a1c21639ede880ceaf4b33616464cf4505cc3ba (patch) | |
tree | e9ea6d5a5a9f0a737cc37736c16da2c7649fb260 /modules | |
parent | 0ef47a3c1b182776f4378035219850de4e7bd925 (diff) | |
download | nixrc-4a1c21639ede880ceaf4b33616464cf4505cc3ba.tar.gz nixrc-4a1c21639ede880ceaf4b33616464cf4505cc3ba.zip |
feat(modules/cachix): add nix-gaming
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cachix/caches/nix-gaming.nix | 12 |
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=" + ]; + }; +} |