nixos-configs/nixosModules/extra-caches.nix

23 lines
753 B
Nix
Raw Normal View History

2025-09-14 12:22:20 +02:00
{
nix.settings = {
substituters = [
2026-04-26 19:07:12 +02:00
# keep-sorted start
2025-09-14 12:22:20 +02:00
"https://cache.lix.systems"
2026-04-26 19:07:12 +02:00
"https://cache.nixos.org/"
2025-09-14 12:22:20 +02:00
"https://niri.cachix.org"
2026-04-26 19:07:12 +02:00
"https://nix-community.cachix.org"
"https://nixos-raspberrypi.cachix.org"
# keep-sorted end
2025-09-14 12:22:20 +02:00
];
trusted-public-keys = [
2026-04-26 19:07:12 +02:00
# keep-sorted start
2025-09-14 12:22:20 +02:00
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
2026-04-26 19:07:12 +02:00
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
2025-09-14 12:22:20 +02:00
"niri.cachix.org-1:Wv0OmO7PsuocRKzfDoJ3mulSl7Z6oezYhGhR+3W2964="
2026-04-26 19:07:12 +02:00
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixos-raspberrypi.cachix.org-1:4iMO9LXa8BqhU+Rpg6LQKiGa2lsNh/j2oiYLNOQ5sPI="
# keep-sorted end
2025-09-14 12:22:20 +02:00
];
};
}