diff options
author | Griffin Smith <root@gws.fyi> | 2022-07-22T14·39-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-07-22T14·43+0000 |
commit | 3903da95e7b071d26b12daa7d19eee2604162e20 (patch) | |
tree | 0a74a7d64acf3cf7e5fada58d19c0b667c546076 /users | |
parent | c04316bdc5718fcd0014a5fa6fb23ee8ae62e740 (diff) |
fix(grfn/system): Don't use whitby as substituter, only builder r/4318
I've found that this is the best way to convince nix to actually prefer cache.nixos.org - it tries to use whitby as a builder, then if the store path is already built it just downloads it. Change-Id: I4c78079bfb0013155feb2d39f60d99779123109e Reviewed-on: https://cl.tvl.fyi/c/depot/+/5972 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/system/machines/ogopogo.nix | 2 | ||||
-rw-r--r-- | users/grfn/system/system/modules/tvl.nix | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/users/grfn/system/system/machines/ogopogo.nix b/users/grfn/system/system/machines/ogopogo.nix index c3bf4e329fa7..aad9204a0cb8 100644 --- a/users/grfn/system/system/machines/ogopogo.nix +++ b/users/grfn/system/system/machines/ogopogo.nix @@ -7,7 +7,7 @@ ../modules/xserver.nix ../modules/fonts.nix ../modules/sound.nix - # ../modules/tvl.nix + ../modules/tvl.nix ../modules/development.nix ../modules/work/kolide.nix ]; diff --git a/users/grfn/system/system/modules/tvl.nix b/users/grfn/system/system/modules/tvl.nix index 3c0326c66412..fc189972da77 100644 --- a/users/grfn/system/system/modules/tvl.nix +++ b/users/grfn/system/system/modules/tvl.nix @@ -18,7 +18,6 @@ settings = { substituters = [ "https://cache.nixos.org" - "ssh://nix-ssh@whitby.tvl.fyi" ]; trusted-substituters = [ "https://cache.nixos.org" |