mirror of
https://github.com/ryan4yin/nixos-and-flakes-book.git
synced 2025-06-22 13:01:25 +02:00
fix: Fix typo of setting the default priority to 100 instead of 1000
This commit is contained in:
parent
708accec5a
commit
59e1ce4e1d
@ -203,7 +203,7 @@ To examine the source code of `lib.mkBefore`, you can run `nix repl -f '<nixpkgs
|
|||||||
mkAfter = mkOrder 1500;
|
mkAfter = mkOrder 1500;
|
||||||
|
|
||||||
# The default priority for things that don't have a priority specified.
|
# 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;
|
mkAfter = mkOrder 1500;
|
||||||
|
|
||||||
# The default priority for things that don't have a priority specified.
|
# The default priority for things that don't have a priority specified.
|
||||||
defaultPriority = 100;
|
defaultPriority = 1000;
|
||||||
|
|
||||||
# ......
|
# ......
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user