summary refs log tree commit diff
path: root/nixos/doc/manual/configuration/linux-kernel.chapter.md
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-07-04 08:24:44 +0800
committerBobby Rong <rjl931189261@126.com>2021-07-04 08:24:44 +0800
commitad393d5f63ebbf52b9c3977041910632ea30699c (patch)
treeb7340b34f8f9936be2db0fb4fa51d9d1286bac27 /nixos/doc/manual/configuration/linux-kernel.chapter.md
parentf8bdee0054668f1ac7b30679e5ce6f5b95f160ee (diff)
downloadnixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar.gz
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar.bz2
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar.lz
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar.xz
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.tar.zst
nixpkgs-ad393d5f63ebbf52b9c3977041910632ea30699c.zip
nixos: use only URI fragment in manual options links
Diffstat (limited to 'nixos/doc/manual/configuration/linux-kernel.chapter.md')
-rw-r--r--nixos/doc/manual/configuration/linux-kernel.chapter.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/doc/manual/configuration/linux-kernel.chapter.md b/nixos/doc/manual/configuration/linux-kernel.chapter.md
index 95af1666389..aad6d49c72c 100644
--- a/nixos/doc/manual/configuration/linux-kernel.chapter.md
+++ b/nixos/doc/manual/configuration/linux-kernel.chapter.md
@@ -42,14 +42,14 @@ something as a kernel module).
 
 Kernel modules for hardware devices are generally loaded automatically
 by `udev`. You can force a module to be loaded via
-[`boot.kernelModules`](options.html#opt-boot.kernelModules), e.g.
+[](#opt-boot.kernelModules), e.g.
 
 ```nix
 boot.kernelModules = [ "fuse" "kvm-intel" "coretemp" ];
 ```
 
 If the module is required early during the boot (e.g. to mount the root
-file system), you can use [`boot.initrd.kernelModules`](options.html#opt-boot.initrd.kernelModules):
+file system), you can use [](#opt-boot.initrd.kernelModules):
 
 ```nix
 boot.initrd.kernelModules = [ "cifs" ];
@@ -59,7 +59,7 @@ This causes the specified modules and their dependencies to be added to
 the initial ramdisk.
 
 Kernel runtime parameters can be set through
-[`boot.kernel.sysctl`](options.html#opt-boot.kernel.sysctl), e.g.
+[](#opt-boot.kernel.sysctl), e.g.
 
 ```nix
 boot.kernel.sysctl."net.ipv4.tcp_keepalive_time" = 120;