autofs service: fix the manual

Fixes #27202.

Changed files
+8 -9
nixos
modules
services
misc
+8 -9
nixos/modules/services/misc/autofs.nix
···
enable = mkOption {
default = false;
-
description = "
+
description = ''
Mount filesystems on demand. Unmount them automatically.
You may also be interested in afuse.
-
";
+
'';
};
autoMaster = mkOption {
···
/auto file:''${mapConf}
'''
'';
-
description = "
-
file contents of /etc/auto.master. See man auto.master
-
See man 5 auto.master and man 5 autofs.
-
";
+
description = ''
+
Contents of <literal>/etc/auto.master</literal> file. See <command>auto.master(5)</command> and <command>autofs(5)</command>.
+
'';
};
timeout = mkOption {
···
debug = mkOption {
default = false;
-
description = "
-
pass -d and -7 to automount and write log to /var/log/autofs
-
";
+
description = ''
+
Pass -d and -7 to automount and write log to the system journal.
+
'';
};
};