Merge pull request #211229 from Luflosi/fix-modprobeConfig-typo

nixos/modprobe: fix typo in boot.modprobeConfig.enable documentation
This commit is contained in:
Nick Cao 2023-01-23 16:02:09 +08:00 committed by GitHub
commit a7a0d03ecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ with lib;
###### interface
options = {
boot.modprobeConfig.enable = mkEnableOption (lib.mdDoc "modprobe config. This is useful for systemds like containers which do not require a kernel.") // {
boot.modprobeConfig.enable = mkEnableOption (lib.mdDoc "modprobe config. This is useful for systems like containers which do not require a kernel") // {
default = true;
};