fix: style

This commit is contained in:
Ryan Yin 2024-02-15 16:13:53 +08:00
parent e08ebaccbb
commit 1feb088490
2 changed files with 8 additions and 14 deletions

View File

@ -270,10 +270,10 @@ The Nixpkgs module system provides two ways to pass non-default parameters:
The official documentation for these two parameters is buried deep and is vague and hard to understand. If readers are interested, I will include the links here:
1. `specialArgs`: There are scattered mentions related to it in the NixOS Manual and the Nixpkgs Manual.
1. Nixpkgs Manual: [Module System - Nixpkgs]
1. NixOS Manual: [nixpkgs/nixos-23.11/nixos/doc/manual/development/option-types.section.md#L237-L244]
- Nixpkgs Manual: [Module System - Nixpkgs]
- NixOS Manual: [nixpkgs/nixos-23.11/nixos/doc/manual/development/option-types.section.md#L237-L244]
1. `_module.args`: Its only official documentation is in the source code below.
1. [nixpkgs/nixos-23.11/lib/modules.nix - _module.args]
- [nixpkgs/nixos-23.11/lib/modules.nix - _module.args]
In short, `specialArgs` and `_module.args` both require an attribute set as their value, and they serve the same purpose, passing all parameters in the attribute set to all submodules. The difference between them is:
@ -380,7 +380,7 @@ First, add the helix input data source to `flake.nix`:
Next, you can reference this flake input data source in `configuration.nix`:
```nix{3,12}
```nix{1,10}
{ config, pkgs, inputs, ... }:
{
# ...

View File

@ -268,10 +268,10 @@ Nixpkgs 的模块系统提供了两种方式来传递非默认参数:
这两个参数的官方文档藏得很深,而且语焉不详、晦涩难懂。读者感兴趣的话我把链接放在这里:
1. `specialArgs`: NixOS Manual 跟 Nixpkgs Manual 中分别有与它有关的只言片语
1. Nixpkgs Manual: [Module System - Nixpkgs]
1. NixOS Manual: [nixpkgs/nixos-23.11/nixos/doc/manual/development/option-types.section.md#L237-L244]
- Nixpkgs Manual: [Module System - Nixpkgs]
- NixOS Manual: [nixpkgs/nixos-23.11/nixos/doc/manual/development/option-types.section.md#L237-L244]
1. `_module.args`: 它唯一的官方文档在如下这份源码中
1. [nixpkgs/nixos-23.11/lib/modules.nix - _module.args]
- [nixpkgs/nixos-23.11/lib/modules.nix - _module.args]
总之,`specialArgs` 与 `_module.args` 需要的值都是一个 attribute set它们的功能也相同都是将其 attribute set 中的所有参数传递到所有子模块中。
这两者的区别在于:
@ -383,24 +383,18 @@ NixOS 社区比较推荐优先使用 `_module.args` 这个 options仅在无
接下来在 `configuration.nix` 中就能引用这个 flake input 数据源了:
```nix{3,15}
# Nix 会通过名称匹配,
# 自动将 specialArgs 中的 inputs 作为函数参数注入到此函数中
```nix{1,10}
{ config, pkgs, inputs, ... }:
{
# 省略无关配置......
environment.systemPackages = with pkgs; [
git
vim
wget
curl
# 这里从 helix 这个 inputs 数据源安装了 helix 程序
inputs.helix.packages."${pkgs.system}".helix
];
# 省略其他配置......
}
```