about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2025-01-12T16·56+0300
committerclbot <clbot@tvl.fyi>2025-01-14T17·51+0000
commitd2d06241a020c19d346f41f9f4e03a58c1f852a3 (patch)
treec514929c770687ea529131bdab3e6324742a0504 /users
parentc948a26d7d38ca91dbd0912c491452230839de25 (diff)
feat(ops/tvl-cache): add option for using experimental cache r/9094
Adds a `tvl.cache.builderball` option for cache *consumers* which enables the
experimental builderball cache. This cache uses whitby AND nevsky.

Change-Id: I4d99ba52d6ebd9a49e6fcb931d01e69383b15bcf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12986
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'users')
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index 95b6a9ef10be..353a03bad424 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -28,6 +28,7 @@ lib.fix (self: {
   ] ++ lib.optional (builtins.pathExists ./local-config.nix) ./local-config.nix;
 
   tvl.cache.enable = true;
+  tvl.cache.builderball = true;
 
   boot = {
     initrd.availableKernelModules = [ "nvme" "ehci_pci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];