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

This typo was introduced in f4d8e64bed.
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-20 13:58:15 +01:00
parent d12f8d563b
commit 2dfc86b838
+1 -1
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;
};