···94949595 unit = mkOption {
9696 internal = true;
9797- description = "The generated unit.";
9797+ description = lib.mdDoc "The generated unit.";
9898 };
9999100100 };
···358358 jobScripts = mkOption {
359359 type = with types; coercedTo path singleton (listOf path);
360360 internal = true;
361361- description = "A list of all job script derivations of this unit.";
361361+ description = lib.mdDoc "A list of all job script derivations of this unit.";
362362 default = [];
363363 };
364364
···141141 type = types.attrs;
142142 internal = true;
143143 default = {};
144144- description = ''
144144+ description = lib.mdDoc ''
145145 Environment variables used for the network proxy.
146146 '';
147147 };
+2-2
nixos/modules/config/shells-environment.nix
···140140 example = literalExpression ''"''${pkgs.dash}/bin/dash"'';
141141 type = types.path;
142142 visible = false;
143143- description = ''
143143+ description = lib.mdDoc ''
144144 The shell executable that is linked system-wide to
145145- <literal>/bin/sh</literal>. Please note that NixOS assumes all
145145+ `/bin/sh`. Please note that NixOS assumes all
146146 over the place that shell to be Bash, so override the default
147147 setting only if you know exactly what you're doing.
148148 '';
+1-1
nixos/modules/config/system-path.nix
···132132133133 path = mkOption {
134134 internal = true;
135135- description = ''
135135+ description = lib.mdDoc ''
136136 The packages you want in the boot environment.
137137 '';
138138 };
+3-3
nixos/modules/config/xdg/portal.nix
···5454 type = types.bool;
5555 visible = false;
5656 default = false;
5757- description = ''
5858- Sets environment variable <literal>GTK_USE_PORTAL</literal> to <literal>1</literal>.
5757+ description = lib.mdDoc ''
5858+ Sets environment variable `GTK_USE_PORTAL` to `1`.
5959 This will force GTK-based programs ran outside Flatpak to respect and use XDG Desktop Portals
6060 for features like file chooser but it is an unsupported hack that can easily break things.
6161- Defaults to <literal>false</literal> to respect its opt-in nature.
6161+ Defaults to `false` to respect its opt-in nature.
6262 '';
6363 };
6464 };
+1-1
nixos/modules/hardware/device-tree.nix
···171171 default = null;
172172 type = types.nullOr types.path;
173173 internal = true;
174174- description = ''
174174+ description = lib.mdDoc ''
175175 A path containing the result of applying `overlays` to `kernelPackage`.
176176 '';
177177 };
+6-6
nixos/modules/hardware/opengl.nix
···7171 package = mkOption {
7272 type = types.package;
7373 internal = true;
7474- description = ''
7474+ description = lib.mdDoc ''
7575 The package that provides the OpenGL implementation.
7676 '';
7777 };
···7979 package32 = mkOption {
8080 type = types.package;
8181 internal = true;
8282- description = ''
8282+ description = lib.mdDoc ''
8383 The package that provides the 32-bit OpenGL implementation on
8484- 64-bit systems. Used when <option>driSupport32Bit</option> is
8484+ 64-bit systems. Used when {option}`driSupport32Bit` is
8585 set.
8686 '';
8787 };
···111111 type = types.bool;
112112 internal = true;
113113 default = false;
114114- description = ''
115115- Whether the <literal>LD_LIBRARY_PATH</literal> environment variable
114114+ description = lib.mdDoc ''
115115+ Whether the `LD_LIBRARY_PATH` environment variable
116116 should be set to the locations of driver libraries. Drivers which
117117 rely on overriding libraries should set this to true. Drivers which
118118- support <literal>libglvnd</literal> and other dispatch libraries
118118+ support `libglvnd` and other dispatch libraries
119119 instead of overriding libraries should not set this.
120120 '';
121121 };
···1111 internal = true;
1212 default = [];
1313 example = [ { assertion = false; message = "you can't enable this for that reason"; } ];
1414- description = ''
1414+ description = lib.mdDoc ''
1515 This option allows modules to express conditions that must
1616 hold for the evaluation of the system configuration to
1717 succeed, along with associated error messages for the user.
···2323 default = [];
2424 type = types.listOf types.str;
2525 example = [ "The `foo' service is deprecated and will go away soon!" ];
2626- description = ''
2626+ description = lib.mdDoc ''
2727 This option allows modules to show warnings to users during
2828 the evaluation of the system configuration.
2929 '';
+2-2
nixos/modules/misc/ids.nix
···19192020 ids.uids = lib.mkOption {
2121 internal = true;
2222- description = ''
2222+ description = lib.mdDoc ''
2323 The user IDs used in NixOS.
2424 '';
2525 type = types.attrsOf types.int;
···27272828 ids.gids = lib.mkOption {
2929 internal = true;
3030- description = ''
3030+ description = lib.mdDoc ''
3131 The group IDs used in NixOS.
3232 '';
3333 type = types.attrsOf types.int;
+3-3
nixos/modules/misc/meta.nix
···3838 internal = true;
3939 default = [];
4040 example = literalExpression ''[ lib.maintainers.all ]'';
4141- description = ''
4141+ description = lib.mdDoc ''
4242 List of maintainers of each module. This option should be defined at
4343 most once per module.
4444 '';
···4848 type = docFile;
4949 internal = true;
5050 example = "./meta.chapter.xml";
5151- description = ''
5151+ description = lib.mdDoc ''
5252 Documentation prologue for the set of options of each module. This
5353 option should be defined at most once per module.
5454 '';
···6060 };
6161 internal = true;
6262 default = true;
6363- description = ''
6363+ description = lib.mdDoc ''
6464 Whether to include this module in the split options doc build.
6565 Disable if the module references `config`, `pkgs` or other module
6666 arguments that cannot be evaluated as constants.
+1-1
nixos/modules/misc/passthru.nix
···77 options = {
88 passthru = lib.mkOption {
99 visible = false;
1010- description = ''
1010+ description = lib.mdDoc ''
1111 This attribute set will be exported as a system attribute.
1212 You can put whatever you want here.
1313 '';
···140140 type = str;
141141 internal = true;
142142 visible = false;
143143- description = "Server stanza text generated from the options.";
143143+ description = lib.mdDoc "Server stanza text generated from the options.";
144144 };
145145 config.name = mkDefault name;
146146 # Client system-options file directives are explained here:
+1-1
nixos/modules/security/wrappers/default.nix
···199199 type = lib.types.path;
200200 default = "/run/wrappers/bin";
201201 internal = true;
202202- description = ''
202202+ description = lib.mdDoc ''
203203 This option defines the path to the wrapper programs. It
204204 should not be overriden.
205205 '';
+1-1
nixos/modules/services/audio/jack.nix
···2727 default = pkgs.jack2;
2828 defaultText = literalExpression "pkgs.jack2";
2929 example = literalExpression "pkgs.jack1";
3030- description = ''
3030+ description = lib.mdDoc ''
3131 The JACK package to use.
3232 '';
3333 };
+3-3
nixos/modules/services/cluster/hadoop/default.nix
···2525 default = {};
2626 type = types.attrsOf types.anything;
2727 internal = true;
2828- description = ''
2828+ description = lib.mdDoc ''
2929 Internal option to add configs to core-site.xml based on module options
3030 '';
3131 };
···5959 default = {};
6060 type = types.attrsOf types.anything;
6161 internal = true;
6262- description = ''
6262+ description = lib.mdDoc ''
6363 Internal option to add configs to hdfs-site.xml based on module options
6464 '';
6565 };
···134134 default = {};
135135 type = types.attrsOf types.anything;
136136 internal = true;
137137- description = ''
137137+ description = lib.mdDoc ''
138138 Internal option to add configs to yarn-site.xml based on module options
139139 '';
140140 };
+1-1
nixos/modules/services/cluster/hadoop/hbase.nix
···3939 default = {};
4040 type = with types; attrsOf anything;
4141 internal = true;
4242- description = ''
4242+ description = lib.mdDoc ''
4343 Internal option to add configs to hbase-site.xml based on module options
4444 '';
4545 };
+1-1
nixos/modules/services/computing/slurm/slurm.nix
···285285 Directory created from generated config files and
286286 `config.${opt.extraConfigPaths}`.
287287 '';
288288- description = ''
288288+ description = lib.mdDoc ''
289289 Path to directory with slurm config files. This option is set by default from the
290290 Slurm module and is meant to make the Slurm config file available to other modules.
291291 '';
···538538 type = types.listOf types.path;
539539 internal = true;
540540 readOnly = true;
541541- description = ''
541541+ description = lib.mdDoc ''
542542 Directories of this policy that will be created automatically
543543 when the certificates directory is left at its default value.
544544 This includes all options of type path that are left at their
+1-1
nixos/modules/services/databases/postgresql.nix
···264264 default = "postgres";
265265 internal = true;
266266 readOnly = true;
267267- description = ''
267267+ description = lib.mdDoc ''
268268 PostgreSQL superuser account to use for various operations. Internal since changing
269269 this value would lead to breakage while setting up databases.
270270 '';
···8989 hardware.sane.configDir = mkOption {
9090 type = types.str;
9191 internal = true;
9292- description = "The value of SANE_CONFIG_DIR.";
9292+ description = lib.mdDoc "The value of SANE_CONFIG_DIR.";
9393 };
94949595 hardware.sane.netConf = mkOption {
+7-7
nixos/modules/services/hardware/udev.nix
···300300 type = types.listOf types.path;
301301 default = [];
302302 visible = false;
303303- description = ''
304304- <emphasis>This will only be used when systemd is used in stage 1.</emphasis>
303303+ description = lib.mdDoc ''
304304+ *This will only be used when systemd is used in stage 1.*
305305306306- List of packages containing <command>udev</command> rules that will be copied to stage 1.
306306+ List of packages containing {command}`udev` rules that will be copied to stage 1.
307307 All files found in
308308- <filename>«pkg»/etc/udev/rules.d</filename> and
309309- <filename>«pkg»/lib/udev/rules.d</filename>
308308+ {file}`«pkg»/etc/udev/rules.d` and
309309+ {file}`«pkg»/lib/udev/rules.d`
310310 will be included.
311311 '';
312312 };
···315315 type = types.listOf types.path;
316316 default = [];
317317 visible = false;
318318- description = ''
319319- <emphasis>This will only be used when systemd is used in stage 1.</emphasis>
318318+ description = lib.mdDoc ''
319319+ *This will only be used when systemd is used in stage 1.*
320320321321 Packages to search for binaries that are referenced by the udev rules in stage 1.
322322 This list always contains /bin of the initrd.
+6-6
nixos/modules/services/logging/filebeat.nix
···159159 type = types.listOf json.type;
160160 default = [];
161161 internal = true;
162162- description = ''
162162+ description = lib.mdDoc ''
163163 Inputs specify how Filebeat locates and processes
164164- input data. Use <xref linkend="opt-services.filebeat.inputs"/> instead.
164164+ input data. Use [](#opt-services.filebeat.inputs) instead.
165165166166- See <link xlink:href="https://www.elastic.co/guide/en/beats/filebeat/current/configuration-filebeat-options.html"/>.
166166+ See <https://www.elastic.co/guide/en/beats/filebeat/current/configuration-filebeat-options.html>.
167167 '';
168168 };
169169 modules = mkOption {
170170 type = types.listOf json.type;
171171 default = [];
172172 internal = true;
173173- description = ''
173173+ description = lib.mdDoc ''
174174 Filebeat modules provide a quick way to get started
175175 processing common log formats. They contain default
176176 configurations, Elasticsearch ingest pipeline
177177 definitions, and Kibana dashboards to help you
178178 implement and deploy a log monitoring solution.
179179180180- Use <xref linkend="opt-services.filebeat.modules"/> instead.
180180+ Use [](#opt-services.filebeat.modules) instead.
181181182182- See <link xlink:href="https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-modules.html"/>.
182182+ See <https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-modules.html>.
183183 '';
184184 };
185185 };
···140140 type = types.listOf types.str;
141141 default = [];
142142 internal = true;
143143- description = ''
144144- The raw configuration line for the <filename>master.cf</filename>.
143143+ description = lib.mdDoc ''
144144+ The raw configuration line for the {file}`master.cf`.
145145 '';
146146 };
147147 };
+1-1
nixos/modules/services/misc/nix-daemon.nix
···340340 type = types.attrs;
341341 internal = true;
342342 default = { };
343343- description = "Environment variables used by Nix.";
343343+ description = lib.mdDoc "Environment variables used by Nix.";
344344 };
345345346346 nrBuildUsers = mkOption {
+1-1
nixos/modules/services/misc/sourcehut/default.nix
···132132 internal = true;
133133 type = types.package;
134134 default = python;
135135- description = ''
135135+ description = lib.mdDoc ''
136136 The python package to use. It should contain references to the *srht modules and also
137137 gunicorn.
138138 '';
+3-3
nixos/modules/services/monitoring/metricbeat.nix
···9999 type = types.listOf settingsFormat.type;
100100 default = [];
101101 internal = true;
102102- description = ''
103103- The metric collecting modules. Use <xref linkend="opt-services.metricbeat.modules"/> instead.
102102+ description = lib.mdDoc ''
103103+ The metric collecting modules. Use [](#opt-services.metricbeat.modules) instead.
104104105105- See <link xlink:href="https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-modules.html"/>.
105105+ See <https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-modules.html>.
106106 '';
107107 };
108108 };
+1-1
nixos/modules/services/networking/nylon.nix
···139139140140 services.nylon = mkOption {
141141 default = {};
142142- description = "Collection of named nylon instances";
142142+ description = lib.mdDoc "Collection of named nylon instances";
143143 type = with types; attrsOf (submodule nylonOpts);
144144 internal = true;
145145 };
+1-1
nixos/modules/services/printing/cupsd.nix
···167167 type = types.lines;
168168 internal = true;
169169 default = "";
170170- description = ''
170170+ description = lib.mdDoc ''
171171 Additional commands executed while creating the directory
172172 containing the CUPS server binaries.
173173 '';
+2-2
nixos/modules/services/system/dbus.nix
···2929 type = types.bool;
3030 default = false;
3131 internal = true;
3232- description = ''
3232+ description = lib.mdDoc ''
3333 Whether to start the D-Bus message bus daemon, which is
3434 required by many other system services and applications.
3535 '';
···7070 type = types.nullOr types.bool;
7171 default = null;
7272 visible = false;
7373- description = ''
7373+ description = lib.mdDoc ''
7474 Removed option, do not use.
7575 '';
7676 };
···6464 bgSupport = true;
6565 start = "...";
6666 };
6767- description = ''
6767+ description = lib.mdDoc ''
6868 Internal option used to add some common line to desktop manager
6969 scripts before forwarding the value to the
7070- <varname>displayManager</varname>.
7070+ `displayManager`.
7171 '';
7272 apply = map (d: d // {
7373 manage = "desktop";
···201201 favorite-apps=[ 'firefox.desktop', 'org.gnome.Calendar.desktop' ]
202202 '''
203203 '';
204204- description = "List of desktop files to put as favorite apps into gnome-shell. These need to be installed somehow globally.";
204204+ description = lib.mdDoc "List of desktop files to put as favorite apps into gnome-shell. These need to be installed somehow globally.";
205205 };
206206207207 extraGSettingsOverrides = mkOption {
···5959 name = "wmii";
6060 start = "...";
6161 }];
6262- description = ''
6262+ description = lib.mdDoc ''
6363 Internal option used to add some common line to window manager
6464 scripts before forwarding the value to the
6565- <varname>displayManager</varname>.
6565+ `displayManager`.
6666 '';
6767 apply = map (d: d // {
6868 manage = "window";
+1-1
nixos/modules/services/x11/xserver.nix
···294294 drivers = mkOption {
295295 type = types.listOf types.attrs;
296296 internal = true;
297297- description = ''
297297+ description = lib.mdDoc ''
298298 A list of attribute sets specifying drivers to be loaded by
299299 the X11 server.
300300 '';
···139139 };
140140141141 system.dryActivationScript = mkOption {
142142- description = "The shell script that is to be run when dry-activating a system.";
142142+ description = lib.mdDoc "The shell script that is to be run when dry-activating a system.";
143143 readOnly = true;
144144 internal = true;
145145 default = systemActivationScript (removeAttrs config.system.activationScripts [ "script" ]) true;
···199199 example = literalExpression ''"''${pkgs.busybox}/bin/env"'';
200200 type = types.nullOr types.path;
201201 visible = false;
202202- description = ''
202202+ description = lib.mdDoc ''
203203 The env(1) executable that is linked system-wide to
204204- <literal>/usr/bin/env</literal>.
204204+ `/usr/bin/env`.
205205 '';
206206 };
207207 };
+6-6
nixos/modules/system/activation/top-level.nix
···207207 system.boot.loader.id = mkOption {
208208 internal = true;
209209 default = "";
210210- description = ''
210210+ description = lib.mdDoc ''
211211 Id string of the used bootloader.
212212 '';
213213 };
···217217 default = pkgs.stdenv.hostPlatform.linux-kernel.target;
218218 defaultText = literalExpression "pkgs.stdenv.hostPlatform.linux-kernel.target";
219219 type = types.str;
220220- description = ''
220220+ description = lib.mdDoc ''
221221 Name of the kernel file to be passed to the bootloader.
222222 '';
223223 };
···226226 internal = true;
227227 default = "initrd";
228228 type = types.str;
229229- description = ''
229229+ description = lib.mdDoc ''
230230 Name of the initrd file to be passed to the bootloader.
231231 '';
232232 };
···238238 # go to `true` instead of `echo`, hiding the useless path
239239 # from the log.
240240 default = "echo 'Warning: do not know how to make this configuration bootable; please enable a boot loader.' 1>&2; true";
241241- description = ''
241241+ description = lib.mdDoc ''
242242 A program that writes a bootloader installation script to the path passed in the first command line argument.
243243244244- See <literal>nixos/modules/system/activation/switch-to-configuration.pl</literal>.
244244+ See `nixos/modules/system/activation/switch-to-configuration.pl`.
245245 '';
246246 type = types.unique {
247247 message = ''
···280280 type = types.lines;
281281 internal = true;
282282 default = "";
283283- description = ''
283283+ description = lib.mdDoc ''
284284 This code will be added to the builder creating the system store path.
285285 '';
286286 };
+1-1
nixos/modules/system/boot/binfmt.nix
···256256 interpreterSandboxPath = mkOption {
257257 internal = true;
258258 default = null;
259259- description = ''
259259+ description = lib.mdDoc ''
260260 Path of the interpreter to expose in the build sandbox.
261261 '';
262262 type = types.nullOr types.path;
+3-3
nixos/modules/system/boot/kernel.nix
···2525 default = {};
2626 example = literalExpression "{ debug = true; }";
2727 internal = true;
2828- description = ''
2828+ description = lib.mdDoc ''
2929 This option allows to enable or disable certain kernel features.
3030 It's not API, because it's about kernel feature sets, that
3131 make sense for specific use cases. Mostly along with programs,
···173173 type = types.listOf types.path;
174174 internal = true;
175175 default = [];
176176- description = ''
176176+ description = lib.mdDoc ''
177177 Tree of kernel modules. This includes the kernel, plus modules
178178 built outside of the kernel. Combine these into a single tree of
179179 symlinks because modprobe only supports one directory.
···193193 '';
194194 internal = true;
195195 type = types.listOf types.attrs;
196196- description = ''
196196+ description = lib.mdDoc ''
197197 This option allows modules to specify the kernel config options that
198198 must be set (or unset) for the module to work. Please use the
199199 lib.kernelConfig functions to build list elements.
+1-1
nixos/modules/system/boot/kernel_config.nix
···1414 default = null;
1515 internal = true;
1616 visible = true;
1717- description = ''
1717+ description = lib.mdDoc ''
1818 Use this field for tristate kernel options expecting a "y" or "m" or "n".
1919 '';
2020 };
+3-3
nixos/modules/system/boot/luksroot.nix
···523523 type = types.bool;
524524 default = false;
525525 internal = true;
526526- description = ''
526526+ description = lib.mdDoc ''
527527 Whether to configure luks support in the initrd, when no luks
528528 devices are configured.
529529 '';
···563563 default = name;
564564 example = "luksroot";
565565 type = types.str;
566566- description = "Name of the unencrypted device in <filename>/dev/mapper</filename>.";
566566+ description = lib.mdDoc "Name of the unencrypted device in {file}`/dev/mapper`.";
567567 };
568568569569 device = mkOption {
···819819 default = [];
820820 example = [ "_netdev" ];
821821 visible = false;
822822- description = ''
822822+ description = lib.mdDoc ''
823823 Only used with systemd stage 1.
824824825825 Extra options to append to the last column of the generated crypttab file.
+1-1
nixos/modules/system/boot/networkd.nix
···18241824 };
1825182518261826 systemd.network.units = mkOption {
18271827- description = "Definition of networkd units.";
18271827+ description = lib.mdDoc "Definition of networkd units.";
18281828 default = {};
18291829 internal = true;
18301830 type = with types; attrsOf (submodule (
+4-4
nixos/modules/system/boot/stage-1.nix
···575575 internal = true;
576576 default = "";
577577 type = types.lines;
578578- description = ''
578578+ description = lib.mdDoc ''
579579 Shell commands to be executed in the builder of the
580580 extra-utils derivation. This can be used to provide
581581 additional utilities in the initial ramdisk.
···586586 internal = true;
587587 default = "";
588588 type = types.lines;
589589- description = ''
589589+ description = lib.mdDoc ''
590590 Shell commands to be executed in the builder of the
591591 extra-utils derivation after patchelf has done its
592592 job. This can be used to test additional utilities
···598598 internal = true;
599599 default = "";
600600 type = types.lines;
601601- description = ''
601601+ description = lib.mdDoc ''
602602 Shell commands to be executed in the builder of the
603603 udev-rules derivation. This can be used to add
604604 additional udev rules in the initial ramdisk.
···676676 default = false;
677677 type = types.bool;
678678 description =
679679- ''
679679+ lib.mdDoc ''
680680 Whether the bootloader setup runs append-initrd-secrets.
681681 If not, any needed secrets must be copied into the initrd
682682 and thus added to the store.
+1-1
nixos/modules/system/boot/systemd/user.nix
···9797 default = [];
9898 type = types.listOf types.str;
9999 example = [];
100100- description = ''
100100+ description = lib.mdDoc ''
101101 Additional units shipped with systemd that should be enabled for per-user systemd instances.
102102 '';
103103 internal = true;
+2-2
nixos/modules/tasks/filesystems.nix
···223223 system.fsPackages = mkOption {
224224 internal = true;
225225 default = [ ];
226226- description = "Packages supplying file system mounters and checkers.";
226226+ description = lib.mdDoc "Packages supplying file system mounters and checkers.";
227227 };
228228229229 boot.supportedFilesystems = mkOption {
···237237 default = {};
238238 type = types.attrsOf (types.submodule coreFileSystemOpts);
239239 internal = true;
240240- description = ''
240240+ description = lib.mdDoc ''
241241 Special filesystems that are mounted very early during boot.
242242 '';
243243 };
+1-1
nixos/modules/tasks/lvm.nix
···1010 default = pkgs.lvm2;
1111 internal = true;
1212 defaultText = literalExpression "pkgs.lvm2";
1313- description = ''
1313+ description = lib.mdDoc ''
1414 This option allows you to override the LVM package that's used on the system
1515 (udev rules, tmpfiles, systemd services).
1616 Defaults to pkgs.lvm2, pkgs.lvm2_dmeventd if dmeventd or pkgs.lvm2_vdo if vdo is enabled.
+1-1
nixos/modules/testing/service-runner.nix
···107107 opts = { config, name, ... }: {
108108 options.runner = mkOption {
109109 internal = true;
110110- description = ''
110110+ description = lib.mdDoc ''
111111 A script that runs the service outside of systemd,
112112 useful for testing or for using NixOS services outside
113113 of NixOS.
···114114 type = types.package;
115115 default = podmanPackage;
116116 internal = true;
117117- description = ''
117117+ description = lib.mdDoc ''
118118 The final Podman package (including extra packages).
119119 '';
120120 };
+1-1
nixos/modules/virtualisation/qemu-vm.nix
···570570 type = types.str;
571571 default = "";
572572 internal = true;
573573- description = "Primary IP address used in /etc/hosts.";
573573+ description = lib.mdDoc "Primary IP address used in /etc/hosts.";
574574 };
575575576576 virtualisation.qemu = {
+3-3
nixos/tests/common/resolver.nix
···1010 type = lib.types.bool;
1111 default = true;
1212 internal = true;
1313- description = ''
1313+ description = lib.mdDoc ''
1414 Whether to enable the resolver that automatically discovers zone in the
1515 test network.
16161717- This option is <literal>true</literal> by default, because the module
1717+ This option is `true` by default, because the module
1818 defining this option needs to be explicitly imported.
19192020 The reason this option exists is for the
2121- <filename>nixos/tests/common/acme/server</filename> module, which
2121+ {file}`nixos/tests/common/acme/server` module, which
2222 needs that option to disable the resolver once the user has set its own
2323 resolver.
2424 '';