diff options
Diffstat (limited to 'nixos/modules/cachix/caches')
-rw-r--r-- | nixos/modules/cachix/caches/chaotic-nixpkgs.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/modules/cachix/caches/chaotic-nixpkgs.nix b/nixos/modules/cachix/caches/chaotic-nixpkgs.nix new file mode 100644 index 0000000..7131c9b --- /dev/null +++ b/nixos/modules/cachix/caches/chaotic-nixpkgs.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: + +{ + nix = { + binaryCaches = [ + "https://chaotic-nixpkgs.cachix.org" + ]; + binaryCachePublicKeys = [ + "chaotic-nixpkgs.cachix.org-1:xm/PZVLgwIlMc8K5+ZxGIkEXovfL9Bll5HolvzN1wIQ=" + ]; + }; +} |