summaryrefslogtreecommitdiff
path: root/modules/lib/write-text.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lib/write-text.nix')
-rw-r--r--modules/lib/write-text.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/lib/write-text.nix b/modules/lib/write-text.nix
index b8f2ad5..2fe02af 100644
--- a/modules/lib/write-text.nix
+++ b/modules/lib/write-text.nix
@@ -16,7 +16,7 @@ in
enable = mkOption {
type = types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Whether this file should be generated.
This option allows specific files to be disabled.
'';
@@ -25,7 +25,7 @@ in
text = mkOption {
type = types.lines;
default = "";
- description = lib.mdDoc ''
+ description = ''
Text of the file.
'';
};
@@ -33,14 +33,14 @@ in
target = mkOption {
type = types.str;
default = name;
- description = lib.mdDoc ''
+ description = ''
Name of symlink. Defaults to the attribute name.
'';
};
source = mkOption {
type = types.path;
- description = lib.mdDoc ''
+ description = ''
Path of the source file.
'';
};
@@ -48,7 +48,7 @@ in
copy = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Whether this file should be copied instead of symlinking.
'';
};