Disable using itself as substituter for nix-cache
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

This commit is contained in:
Torjus Håkestad 2025-02-26 18:34:44 +01:00
parent 91e618f495
commit 844449b899
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,7 @@
{ lib, ... }:
{
nix.settings.substituters = lib.mkForce [
"https://cache.nixos.org"
"https://cuda-maintainers.cachix.org"
];
}

View File

@ -1,4 +1,4 @@
{ ... }:
{ lib, ... }:
{
nix = {
gc = {
@ -15,7 +15,7 @@
"https://cache.nixos.org"
"https://cuda-maintainers.cachix.org"
];
substituters = [
substituters = lib.mkDefault [
"https://nix-cache.home.2rjus.net"
"https://cache.nixos.org"
"https://cuda-maintainers.cachix.org"