Unverified Commit 3d88cc85 authored by Samuel Dionne-Riel's avatar Samuel Dionne-Riel Committed by GitHub
Browse files

Merge pull request #262595 from tpwrules/fix-extra-config-documentation

nixos/kernel: correct kernelPatches.extraConfig documentation
parents b04b7d64 be806575
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -96,8 +96,8 @@ in
                                        # (required, but can be null if only config changes
                                        # are needed)

          extraStructuredConfig = {     # attrset of extra configuration parameters
            FOO = lib.kernel.yes;       # (without the CONFIG_ prefix, optional)
          extraStructuredConfig = {     # attrset of extra configuration parameters without the CONFIG_ prefix
            FOO = lib.kernel.yes;       # (optional)
          };                            # values should generally be lib.kernel.yes,
                                        # lib.kernel.no or lib.kernel.module

@@ -105,8 +105,9 @@ in
            foo = true;                 # (may be checked by other NixOS modules, optional)
          };

          extraConfig = "CONFIG_FOO y"; # extra configuration options in string form
                                        # (deprecated, use extraStructuredConfig instead, optional)
          extraConfig = "FOO y";        # extra configuration options in string form without the CONFIG_ prefix
                                        # (optional, multiple lines allowed to specify multiple options)
                                        # (deprecated, use extraStructuredConfig instead)
        }
        ```