about summary refs log tree commit diff
path: root/users/glittershark/system/system/modules
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-14T19·36-0400
committerglittershark <grfn@gws.fyi>2020-07-14T19·38+0000
commit2abccc22ac9ba1afd44f6c282359a8196fdf41ab (patch)
tree6a7dba53579d345b6bea1f4dac3b5d91b1cc2bb1 /users/glittershark/system/system/modules
parent8a7f0beb861d3aa2336625da90e13c4fb881c218 (diff)
chore(gs/system): reformat tvl.nix r/1294
Change-Id: Icc2f953450956a01b32872e6575976e49f1be0b4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1167
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/system/system/modules')
-rw-r--r--users/glittershark/system/system/modules/tvl.nix16
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 ffa63e3243..5291532338 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
     '';
   };
 }