s0mePC-nix: trusted-substituters init in nix/settings/

Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
s0me1newithhand7s 2025-06-17 10:37:25 +03:00
parent 73673d7383
commit c8a183c354
No known key found for this signature in database
2 changed files with 23 additions and 0 deletions

View file

@ -40,6 +40,7 @@
./nix/settings/trusted-public-keys.nix ./nix/settings/trusted-public-keys.nix
./nix/settings/trusted-users.nix ./nix/settings/trusted-users.nix
./nix/settings/auto-optimise-store.nix ./nix/settings/auto-optimise-store.nix
./nix/settings/trusted-substituters.nix
./nixpkgs/config.nix ./nixpkgs/config.nix
./nixpkgs/system.nix ./nixpkgs/system.nix

View file

@ -0,0 +1,22 @@
{
...
}: {
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"
];
};
};
}