Skip to content

Commit

Permalink
fix: Fix typo of setting the default priority to 100 instead of 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
Adda0 committed Feb 25, 2024
1 parent 708acce commit 59e1ce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/nixos-with-flakes/modularize-the-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
# ......
```
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/nixos-with-flakes/modularize-the-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
# ......
```
Expand Down

0 comments on commit 59e1ce4

Please sign in to comment.