nixos/modprobe: fix typo in boot.modprobeConfig.enable documentation

This typo was introduced in f4d8e64bed05489cdb2af880644f1da4d0fe4eef.
Also remove the dot at the end of the sentence since otherwise there would be two dots in the documentation.
This commit is contained in:
Luflosi 2023-01-17 13:01:47 +01:00
parent d12f8d563b
commit 2dfc86b838
No known key found for this signature in database
GPG Key ID: 4E41E29EDCC345D0

@ -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;
};