From 2dfc86b8380edf8f8d00c8e25508b565708d6a89 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Tue, 17 Jan 2023 13:01:47 +0100 Subject: [PATCH] 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. --- nixos/modules/system/boot/modprobe.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/modprobe.nix b/nixos/modules/system/boot/modprobe.nix index 54bb7ea9ddd7..d751c4462d3f 100644 --- a/nixos/modules/system/boot/modprobe.nix +++ b/nixos/modules/system/boot/modprobe.nix @@ -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; };