fix: typo

This commit is contained in:
Ryan Yin 2024-01-11 11:46:17 +08:00
parent d547e022c8
commit eef309f6de

View File

@ -7,7 +7,7 @@ In our previous NixOS configurations, we set various values for `options` to con
- NixOS: [nixpkgs/nixos/modules](https://github.com/NixOS/nixpkgs/tree/23.11/nixos/modules), where all NixOS options visible on <https://search.nixos.org/options> are defined.
- Home Manager: [home-manager/modules](https://github.com/nix-community/home-manager/blob/release-23.11/modules), where you can find all its options at <https://nix-community.github.io/home-manager/options.xhtml>.
The foundation of the aforementioned NixOS Modules and Home Manager Modules is a universal module system implemented in Nixpkgs, found in [lib/modules.nix](lib/modules.nix). The official documentation for this module system is provided below (even for experienced NixOS users, understanding this can be a challenging task):
The foundation of the aforementioned NixOS Modules and Home Manager Modules is a universal module system implemented in Nixpkgs, found in [lib/modules.nix][lib/modules.nix]. The official documentation for this module system is provided below (even for experienced NixOS users, understanding this can be a challenging task):
- [Module System - Nixpkgs](Module System - Nixpkgs)