summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/networkmanager.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-05 19:39:00 +0200
committerpennae <github@quasiparticle.net>2022-08-06 20:39:12 +0200
commit087472b1e5230ffc8ba642b1e4f9218adf4634a2 (patch)
treeba5c8e457072dce9aa13a92f26bb7e6a47d45776 /nixos/modules/services/networking/networkmanager.nix
parent423545fe4865d126e86721ba30da116e29c65004 (diff)
nixos/*: automatically convert option docs
Diffstat (limited to 'nixos/modules/services/networking/networkmanager.nix')
-rw-r--r--nixos/modules/services/networking/networkmanager.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix
index f2ca3cf30f19..d5d562e7ba5f 100644
--- a/nixos/modules/services/networking/networkmanager.nix
+++ b/nixos/modules/services/networking/networkmanager.nix
@@ -173,14 +173,14 @@ in {
str
]));
default = {};
- description = ''
+ description = lib.mdDoc ''
Configuration for the [connection] section of NetworkManager.conf.
Refer to
- <link xlink:href="https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html">
+ [
https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html#id-1.2.3.11
- </link>
+ ](https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html)
or
- <citerefentry><refentrytitle>NetworkManager.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ {manpage}`NetworkManager.conf(5)`
for more information.
'';
};
@@ -188,14 +188,14 @@ in {
extraConfig = mkOption {
type = types.lines;
default = "";
- description = ''
+ description = lib.mdDoc ''
Configuration appended to the generated NetworkManager.conf.
Refer to
- <link xlink:href="https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html">
+ [
https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html
- </link>
+ ](https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html)
or
- <citerefentry><refentrytitle>NetworkManager.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ {manpage}`NetworkManager.conf(5)`
for more information.
'';
};
@@ -203,15 +203,15 @@ in {
unmanaged = mkOption {
type = types.listOf types.str;
default = [];
- description = ''
+ description = lib.mdDoc ''
List of interfaces that will not be managed by NetworkManager.
Interface name can be specified here, but if you need more fidelity,
refer to
- <link xlink:href="https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html#device-spec">
+ [
https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html#device-spec
- </link>
+ ](https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html#device-spec)
or the "Device List Format" Appendix of
- <citerefentry><refentrytitle>NetworkManager.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+ {manpage}`NetworkManager.conf(5)`.
'';
};
@@ -318,15 +318,15 @@ in {
dns = mkOption {
type = types.enum [ "default" "dnsmasq" "unbound" "systemd-resolved" "none" ];
default = "default";
- description = ''
- Set the DNS (<literal>resolv.conf</literal>) processing mode.
+ description = lib.mdDoc ''
+ Set the DNS (`resolv.conf`) processing mode.
A description of these modes can be found in the main section of
- <link xlink:href="https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html">
+ [
https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html
- </link>
+ ](https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html)
or in
- <citerefentry><refentrytitle>NetworkManager.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+ {manpage}`NetworkManager.conf(5)`.
'';
};