- Added `cachix.nix` for configuring Cachix substituters - Added `cachix/nix-community.nix` for Nix Community Cachix settings - Updated `lib/host.nix` to include `pkgs.nixosModules.cachixConfig` in the list of NixOS modules
14 lines
240 B
Nix
14 lines
240 B
Nix
|
|
{
|
|
nix = {
|
|
settings = {
|
|
substituters = [
|
|
"https://nix-community.cachix.org"
|
|
];
|
|
trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
};
|
|
};
|
|
}
|