about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-23 16:02:09 +0800
committerGitHub <noreply@github.com>2023-01-23 16:02:09 +0800
commita7a0d03ecca61d9513674de3ea9c0daa5ff3f2ac (patch)
tree9efb118a4f3ac029c1fd312a488c8b0381245bf7 /nixos
parentf8106efd2c5ad1de7058ec7b3b88a81ebb99b0e8 (diff)
parent2dfc86b8380edf8f8d00c8e25508b565708d6a89 (diff)
Merge pull request #211229 from Luflosi/fix-modprobeConfig-typo
nixos/modprobe: fix typo in boot.modprobeConfig.enable documentation
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/modprobe.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/modprobe.nix b/nixos/modules/system/boot/modprobe.nix
index 54bb7ea9ddd76..d751c4462d3f1 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;
     };