diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/system/system/modules/tvl.nix | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/users/glittershark/system/system/modules/tvl.nix b/users/glittershark/system/system/modules/tvl.nix index ffa63e3243cd..5291532338af 100644 --- a/users/glittershark/system/system/modules/tvl.nix +++ b/users/glittershark/system/system/modules/tvl.nix @@ -2,15 +2,23 @@ { nix = { - binaryCaches = ["ssh://nix-ssh@whitby.tvl.fyi"]; - trustedBinaryCaches = ["ssh://nix-ssh@whitby.tvl.fyi"]; - binaryCachePublicKeys = ["cache.tvl.fyi:fd+9d1ceCPvDX/xVhcfv8nAa6njEhAGAEe+oGJDEeoc="]; + binaryCaches = [ + "ssh://nix-ssh@whitby.tvl.fyi" + "https://cache.nixos.org" + ]; + trustedBinaryCaches = [ + "ssh://nix-ssh@whitby.tvl.fyi" + "https://cache.nixos.org" + ]; + binaryCachePublicKeys = [ + "cache.tvl.fyi:fd+9d1ceCPvDX/xVhcfv8nAa6njEhAGAEe+oGJDEeoc=" + ]; }; programs.ssh.knownHosts.whitby = { hostNames = [ "whitby" "whitby.tvl.fyi" "49.12.129.211"]; publicKeyFile = pkgs.writeText "whitby.pub" '' - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILNh/w4BSKov0jdz3gKBc98tpoLta5bb87fQXWBhAl2I + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILNh/w4BSKov0jdz3gKBc98tpoLta5bb87fQXWBhAl2I ''; }; } |