summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authoréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-04-08 18:41:30 -0400
committeréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-04-11 17:37:36 -0400
commit6cbffaae4c1505719e8a1427f6bf846ddad17774 (patch)
treec94b91a7845eb1f97cb1208c785e235cd7d3f56f /nixos/modules/services/network-filesystems
parentcaa0cbab281b20ab081c619d3de3d2ec2023585f (diff)
nixos/davfs2: remove lib.mdDoc (no-op)
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/davfs2.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/network-filesystems/davfs2.nix b/nixos/modules/services/network-filesystems/davfs2.nix
index 586ee9a8dc39..0f45786a4be2 100644
--- a/nixos/modules/services/network-filesystems/davfs2.nix
+++ b/nixos/modules/services/network-filesystems/davfs2.nix
@@ -23,7 +23,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Whether to enable davfs2.
'';
};
@@ -31,7 +31,7 @@ in
davUser = mkOption {
type = types.str;
default = "davfs2";
- description = lib.mdDoc ''
+ description = ''
When invoked by root the mount.davfs daemon will run as this user.
Value must be given as name, not as numerical id.
'';
@@ -40,7 +40,7 @@ in
davGroup = mkOption {
type = types.str;
default = "davfs2";
- description = lib.mdDoc ''
+ description = ''
The group of the running mount.davfs daemon. Ordinary users must be
member of this group in order to mount a davfs2 file system. Value must
be given as name, not as numerical id.
@@ -55,7 +55,7 @@ in
proxy foo.bar:8080
use_locks 0
'';
- description = lib.mdDoc ''
+ description = ''
Extra lines appended to the configuration of davfs2.
See {manpage}`davfs2.conf(5)` for available settings.
@@ -77,7 +77,7 @@ in
use_locks = 0;
}
'';
- description = lib.mdDoc ''
+ description = ''
Extra settings appended to the configuration of davfs2.
See {manpage}`davfs2.conf(5)` for available settings.
'' ;