Merge pull request #92 from Adda0/fix_wording

Fix: Improve wording in Preface and the book
This commit is contained in:
Ryan Yin 2024-02-25 15:42:09 +08:00 committed by GitHub
commit dff1bb3b1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 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; 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;
# ...... # ......
``` ```

View File

@ -8,7 +8,7 @@ According to the official [Home Manager Manual](https://nix-community.github.io/
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# TODO please change the username & home direcotry to your own # TODO please change the username & home directory to your own
home.username = "ryan"; home.username = "ryan";
home.homeDirectory = "/home/ryan"; home.homeDirectory = "/home/ryan";

View File

@ -52,7 +52,7 @@ If you find this book helpful, please consider donating to support its developme
Im not an expert on NixOS, and Ive only been using NixOS for less than 9 months until now(2024-02), Im not an expert on NixOS, and Ive only been using NixOS for less than 9 months until now(2024-02),
so there must be some misconceptions or complex cases in the book. so there must be some misconceptions or complex cases in the book.
If anyone finds anything incorrect or have any questions / suggestions, just let me know about it by open an issue or join the discussion on [GitHub Discussions](https://github.com/ryan4yin/nixos-and-flakes-book/discussions), I'm glad continue to optimize the content of this book. If anyone finds anything incorrect or have any questions / suggestions, just let me know about it by opening an issue or joining the discussion on [GitHub Discussions](https://github.com/ryan4yin/nixos-and-flakes-book/discussions). I'm happy to continue improving the content of this book.
The reason why I wrote this little book was only because no one in the community did it for me, who was a beginner at the time, so I chose to do it myself. The reason why I wrote this little book was only because no one in the community did it for me, who was a beginner at the time, so I chose to do it myself.
Even though I knew I could make mistakes, it was much better than do nothing. Even though I knew I could make mistakes, it was much better than do nothing.

View File

@ -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;
# ...... # ......
``` ```