diff options
author | Vincent Ambo <mail@tazj.in> | 2022-06-27T15·07+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-06-27T18·17+0000 |
commit | f8ed0088ea459d7d585bbcef2e7ca0943319518b (patch) | |
tree | adc6cf26d21383270aea1cb99969db108a7e93e3 /ops | |
parent | 61458ac0726a95621471a028a247bb0027ada3e8 (diff) |
fix(ops/sanduny): Enable our binary cache r/4261
Change-Id: I53f4c5b667018c0d3b01b307411200b66f6a7de3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5901 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/machines/sanduny/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ops/machines/sanduny/default.nix b/ops/machines/sanduny/default.nix index 5f30e08a75f3..4767f6a7bd65 100644 --- a/ops/machines/sanduny/default.nix +++ b/ops/machines/sanduny/default.nix @@ -16,6 +16,7 @@ in imports = [ (mod "journaldriver.nix") (mod "known-hosts.nix") + (mod "tvl-cache.nix") (mod "tvl-users.nix") (mod "www/self-redirect.nix") ]; @@ -103,6 +104,8 @@ in }; }; + tvl.cache.enable = true; + swapDevices = lib.singleton { device = "/dev/disk/by-uuid/df4ad9da-0a06-4c27-93e5-5d44e4750e55"; }; |