Add nix substituters for internal network

This commit is contained in:
2026-03-27 20:45:28 +00:00
parent 31b0dde8d1
commit 83770fa529

View File

@@ -9,4 +9,15 @@
"https://github.com/dotdoom/dotfiles.git";
url."https://git.sheremet.ch/home/esphome.git".insteadOf = "https://github.com/dotdoom/esphome.git";
};
nix.settings = {
substituters = [
"http://nix-cache.home.arpa"
# nix-community cachix server
# TODO: this, but through our cache -- "https://nix-community.cachix.org"
];
trusted-public-keys = [
# "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
}