fix: Fix typo of setting the default priority to 100 instead of 1000

This commit is contained in:
David Chocholatý 2024-02-25 08:37:56 +01:00
parent 708accec5a
commit 59e1ce4e1d
No known key found for this signature in database
GPG key ID: A428A770BAA7361B
2 changed files with 2 additions and 2 deletions

View file

@ -203,7 +203,7 @@ To examine the source code of `lib.mkBefore`, you can run `nix repl -f '<nixpkgs
mkAfter = mkOrder 1500;
# The default priority for things that don't have a priority specified.
defaultPriority = 100;
defaultPriority = 1000;
# ......
```

View file

@ -182,7 +182,7 @@ Nix Flakes 对目录结构没有任何要求,你可以参考上面的例子,
mkAfter = mkOrder 1500;
# The default priority for things that don't have a priority specified.
defaultPriority = 100;
defaultPriority = 1000;
# ......
```