summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-01-11 10:19:00 +0300
committerGitHub <noreply@github.com>2023-01-11 10:19:00 +0300
commita2282ae66e6c36f6d2cb5b34764ecc5cb6b24765 (patch)
tree40d92b041d0a5dfc2fe44da099983ad6b3e83303
parent7148e613d5a3e36f0a5bd0a7d564cac33724de74 (diff)
parentb2a819f15f3165c08b5902692cfdd058a7e019b3 (diff)
Merge pull request #210166 from K900/small-oof
nixos/kernel: fix docs typo
-rw-r--r--nixos/modules/system/boot/kernel.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/nixos/modules/system/boot/kernel.nix b/nixos/modules/system/boot/kernel.nix
index 272f1b95fe64..8f203b2c8b32 100644
--- a/nixos/modules/system/boot/kernel.nix
+++ b/nixos/modules/system/boot/kernel.nix
@@ -78,7 +78,7 @@ in
{
name = "foo";
patch = ./foo.patch;
- structuredExtraConfig.FOO = lib.kernel.yes;
+ extraStructuredConfig.FOO = lib.kernel.yes;
features.foo = true;
}
]
@@ -96,16 +96,17 @@ in
# (required, but can be null if only config changes
# are needed)
- structuredExtraConfig = { # attrset of extra configuration parameters
+ extraStructuredConfig = { # attrset of extra configuration parameters
FOO = lib.kernel.yes; # (without the CONFIG_ prefix, optional)
- }; # values should generally be lib.kernel.yes or lib.kernel.no
+ }; # values should generally be lib.kernel.yes,
+ # lib.kernel.no or lib.kernel.module
features = { # attrset of extra "features" the kernel is considered to have
foo = true; # (may be checked by other NixOS modules, optional)
};
extraConfig = "CONFIG_FOO y"; # extra configuration options in string form
- # (deprecated, use structuredExtraConfig instead, optional)
+ # (deprecated, use extraStructuredConfig instead, optional)
}
```