summary refs log tree commit diff
path: root/nixos/lib/testing/driver.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-09-29 12:41:59 +0200
committerRobert Hensing <robert@roberthensing.nl>2022-09-29 12:41:59 +0200
commit216c5dc10dd9d842909fe256567e9aeda3212396 (patch)
treef4f3106f16215b6332e750fd1e97b064fc160fe4 /nixos/lib/testing/driver.nix
parent91879ce1604060e3b91d275f7686b98d2357c9a6 (diff)
downloadnixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar.gz
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar.bz2
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar.lz
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar.xz
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.tar.zst
nixpkgs-216c5dc10dd9d842909fe256567e9aeda3212396.zip
nixos/doc: Disambiguate test option ids
Changing this later on would break external links into the manual.
Diffstat (limited to 'nixos/lib/testing/driver.nix')
-rw-r--r--nixos/lib/testing/driver.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/lib/testing/driver.nix b/nixos/lib/testing/driver.nix
index 04e99f9e21d..fb181c1d7e9 100644
--- a/nixos/lib/testing/driver.nix
+++ b/nixos/lib/testing/driver.nix
@@ -120,7 +120,7 @@ in
     };
 
     qemu.package = mkOption {
-      description = mdDoc "Which qemu package to use for the virtualisation of [{option}`nodes`](#opt-nodes).";
+      description = mdDoc "Which qemu package to use for the virtualisation of [{option}`nodes`](#test-opt-nodes).";
       type = types.package;
       default = hostPkgs.qemu_test;
       defaultText = "hostPkgs.qemu_test";
@@ -152,7 +152,7 @@ in
       description = mdDoc ''
         Extra arguments to pass to the test driver.
 
-        They become part of [{option}`driver`](#opt-driver) via `wrapProgram`.
+        They become part of [{option}`driver`](#test-opt-driver) via `wrapProgram`.
       '';
       type = types.listOf types.str;
       default = [];
@@ -172,7 +172,7 @@ in
       description = mdDoc ''
         Disable type checking. This must not be enabled for new NixOS tests.
 
-        This may speed up your iteration cycle, unless you're working on the [{option}`testScript`](#opt-testScript).
+        This may speed up your iteration cycle, unless you're working on the [{option}`testScript`](#test-opt-testScript).
       '';
     };
   };