about summary refs log tree commit diff
path: root/nixos/modules/cachix/caches/chaotic-nixpkgs.nix
blob: d6c98446c79322d9f795046af86746de44b78f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:

{
  nix.settings = {
    substituters = [
      "https://chaotic-nixpkgs.cachix.org"
    ];
    trusted-public-keys = [
      "chaotic-nixpkgs.cachix.org-1:xm/PZVLgwIlMc8K5+ZxGIkEXovfL9Bll5HolvzN1wIQ="
    ];
  };
}