nixos-config/modules/hardware/hydraCache.nix

22 lines
461 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="
2024-12-30 08:21:33 +01:00
"steamdeck.cachix.org-1:BVoP4TEu3ECgotaO+3J3r9SSn62GkUDBwizOFU/q4Bc="
2024-05-26 09:14:01 +02:00
];
extra-substituters = [
2024-12-30 08:21:33 +01:00
"https://steamdeck.cachix.org"
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
};
};
}