reNixos/s0mePC-nix/nix/settings/trusted-substituters.nix
s0me1newithhand7s a3a633b169
s0mePC-nix: fmt
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-06-17 10:38:00 +03:00

20 lines
630 B
Nix

{...}: {
nix = {
settings = {
trusted-substituters = [
# cache.nixos.org
"https://nixos-cache-proxy.cofob.dev"
"https://cache.nixos.org"
# cache.garnix.org
"https://cache.garnix.io"
# cachix
"https://nix-community.cachix.org/"
"https://chaotic-nyx.cachix.org/"
"https://ags.cachix.org"
"https://hyprland.cachix.org"
"https://chaotic-nyx.cachix.org/"
"https://colmena.cachix.org"
];
};
};
}