From b65d40261be6f75c62f4b067f1510939ea06c1fe Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 27 Dec 2024 16:11:00 +0100 Subject: [PATCH] fix(users/flokli/nixos-tvix-cache): drop private bind mounts The mount didn't get applied for some reason, explicitly configure the path. Change-Id: Ie41eb3c1d5f6416493211fb77709aaeecf61edf0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12924 Autosubmit: flokli Reviewed-by: raitobezarius Tested-by: BuildkiteCI --- users/flokli/nixos/nixos-tvix-cache/nar-bridge.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/users/flokli/nixos/nixos-tvix-cache/nar-bridge.nix b/users/flokli/nixos/nixos-tvix-cache/nar-bridge.nix index a854e9f89..810dd5945 100644 --- a/users/flokli/nixos/nixos-tvix-cache/nar-bridge.nix +++ b/users/flokli/nixos/nixos-tvix-cache/nar-bridge.nix @@ -67,7 +67,7 @@ blobservices = { root = { type = "objectstore"; - object_store_url = "file:///var/lib/nar-bridge/blobs.object_store"; + object_store_url = "file:///tank/nar-bridge/blobs.object_store"; object_store_options = { }; }; }; @@ -122,8 +122,5 @@ # twice the normal allowed limit, same as nix-daemon serviceConfig.LimitNOFILE = "1048576"; - serviceConfig.BindPaths = [ - "/tank/nar-bridge/blobs.object_store:/var/lib/nar-bridge/blobs.object_store" - ]; }; }