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 <flokli@flokli.de>
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2024-12-27 16:22:07 +01:00 committed by clbot
parent b65d40261b
commit 9fdf6b3cd1

View file

@ -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"
];
```