mirror of
https://github.com/ryan4yin/nixos-and-flakes-book
synced 2024-11-10 06:44:14 +00:00
fix: Fix typo of setting the default priority to 100 instead of 1000
This commit is contained in:
parent
708accec5a
commit
59e1ce4e1d
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
# ......
|
||||
```
|
||||
|
|
|
@ -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;
|
||||
|
||||
# ......
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue