nixos-config/modules/hardware/hydraCache.nix

20 lines
358 B
Nix
Raw Normal View History

2024-05-26 09:14:01 +02:00
{ config, lib, pkgs, ... }:
{
nix = {
settings = {
extra-trusted-public-keys = [
"hades-builder:AFdPgi6Qq/yKqc2V2imgzMikEkVEFCrDaHyAmOJ3MII="
];
extra-substituters = [
2024-06-11 19:54:49 +02:00
"https://cache.ci.kabtop.de"
2024-05-26 09:14:01 +02:00
];
2024-06-11 19:54:49 +02:00
#extra-trusted-substituters = [
# "https://cache.home.opel-online.de"
#];
2024-05-26 09:14:01 +02:00
};
};
}