Radish alpha
r
rad:z254T5p17bdFPmzfDojsdjo4HjpoZ
Radicle Infrastructure as Code (NixOS, OpenTofu, …)
Radicle
Git
ox/mixin/cache: Add ours, nix-community, garnix
Lorenz Leutgeb committed 10 months ago
commit f27136d7440f403823348bb8a863f100eba23762
parent d690ab6
2 files changed +15 -0
modified os/host/seed/default.nix
@@ -7,6 +7,7 @@
  ...
}: {
  imports = [
+
    ../../mixin/cache.nix
    ../../mixin/kmscon.nix
    ../../mixin/nix.nix
    ../../mixin/motd.nix
added os/mixin/cache.nix
@@ -0,0 +1,14 @@
+
{
+
  nix.settings = {
+
    substituters = [
+
      "https://attic.radicle.xyz/radicle"
+
      "https://nix-community.cachix.org" # https://nix-community.org/cache/
+
      "https://cache.garnix.io" # https://garnix.io/docs/caching
+
    ];
+
    trusted-public-keys = [
+
      "radicle:TruHbueGHPm9iYSq7Gq6wJApJOqddWH+CEo+fsZnf4g="
+
      "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
+
      "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
+
    ];
+
  };
+
}