lol

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.

Luflosi 2dfc86b8 d12f8d56

+1 -1
+1 -1
nixos/modules/system/boot/modprobe.nix
··· 7 7 ###### interface 8 8 9 9 options = { 10 - boot.modprobeConfig.enable = mkEnableOption (lib.mdDoc "modprobe config. This is useful for systemds like containers which do not require a kernel.") // { 10 + boot.modprobeConfig.enable = mkEnableOption (lib.mdDoc "modprobe config. This is useful for systems like containers which do not require a kernel") // { 11 11 default = true; 12 12 }; 13 13