From 008bfe94d7e66b21b675859ffc63618816931781 Mon Sep 17 00:00:00 2001 From: ant Date: Sun, 14 Sep 2025 21:08:17 +0200 Subject: [PATCH] set priority to 50 for my nix cache --- os/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/common.nix b/os/common.nix index ddecd63..b53dd21 100644 --- a/os/common.nix +++ b/os/common.nix @@ -3,7 +3,7 @@ nix.package = pkgs.nixVersions.latest; nix.settings = { experimental-features = [ "nix-command" "flakes" ]; - extra-substituters = [ "https://nixcache.antoinevaure.fr/" ]; + extra-substituters = [ "https://nixcache.antoinevaure.fr/?priority=50" ]; extra-trusted-public-keys = [ "nixcache.antoinevaure.fr:KbcKN97zPmsDUCNAXj5g1/WWJEk2WnyMgI6CmwgX/QY=" ]; }; nixpkgs.config.allowUnfree = true;