Files
nixos-blueprint/modules/nixos/shared/nix/substituters.nix
T
2026-05-11 10:15:54 +03:00

17 lines
534 B
Nix

{
nix.settings = {
substituters = [
"https://cache.nixos.org/"
"https://cosmic.cachix.org/"
"https://nix-community.cachix.org/"
"https://vicinae.cachix.org"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"vicinae.cachix.org-1:1kDrfienkGHPYbkpNj1mWTr7Fm1+zcenzgTizIcI3oc="
];
};
}