From c53d6d34538298657c7b1a6abebeb542c86cc0b7 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 2 Dec 2021 09:16:52 +0300 Subject: fix(ops/nixery): Temporarily stop serving depot packages in Nixery Change the Nixery configuration to use the plain nixpkgs package path instead of the depot path. AFAIK, nobody uses this to fetches depot packages at the moment - but plenty of people fetch non-depot packages. This means that Nixery is cache-busted less often (previously on every commit => every deploy). We'll figure out another way to have a depot Nixery later. Change-Id: Iba632333346181c3d2ce992fbab396ed0d9f86aa --- ops/modules/nixery.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ops') diff --git a/ops/modules/nixery.nix b/ops/modules/nixery.nix index 58c975815e..60d1510457 100644 --- a/ops/modules/nixery.nix +++ b/ops/modules/nixery.nix @@ -32,7 +32,7 @@ in { environment = { PORT = toString cfg.port; - NIXERY_PKGS_PATH = "${depot.path}/.nixery"; + NIXERY_PKGS_PATH = pkgs.path; NIXERY_STORAGE_BACKEND = "filesystem"; NIX_TIMEOUT = "60"; # seconds STORAGE_PATH = storagePath; -- cgit 1.4.1