From 9fdf6b3cd1db0dd40f373c68d200ba258a323859 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 27 Dec 2024 16:22:07 +0100 Subject: [PATCH] docs(users/flokli/nixos-tvix-cache): don't use mkForce There's no need to mkForce anything in that list. Nix reads nix-cache-info to determine priority. Change-Id: I08797ed25348f52f5696f80558d206b73d20dead Reviewed-on: https://cl.tvl.fyi/c/depot/+/12925 Autosubmit: flokli Reviewed-by: raitobezarius Tested-by: BuildkiteCI --- users/flokli/nixos/nixos-tvix-cache/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/flokli/nixos/nixos-tvix-cache/README.md b/users/flokli/nixos/nixos-tvix-cache/README.md index 6a0e2f8dd..699135def 100644 --- a/users/flokli/nixos/nixos-tvix-cache/README.md +++ b/users/flokli/nixos/nixos-tvix-cache/README.md @@ -15,7 +15,7 @@ The goals of this machine: You can configure this as a Nix substitutor on your systems like this: ```nix - nix.settings.substituters = lib.mkForce [ + nix.settings.substituters = [ "https://nixos.tvix.store" ]; ```