summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/pcmcia.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/pcmcia.nix')
-rw-r--r--nixos/modules/hardware/pcmcia.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/hardware/pcmcia.nix b/nixos/modules/hardware/pcmcia.nix
index aef35a28e54d..f7a5565d773e 100644
--- a/nixos/modules/hardware/pcmcia.nix
+++ b/nixos/modules/hardware/pcmcia.nix
@@ -20,7 +20,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
- description = ''
+ description = lib.mdDoc ''
Enable this option to support PCMCIA card.
'';
};
@@ -28,7 +28,7 @@ in
firmware = mkOption {
type = types.listOf types.path;
default = [];
- description = ''
+ description = lib.mdDoc ''
List of firmware used to handle specific PCMCIA card.
'';
};
@@ -36,7 +36,7 @@ in
config = mkOption {
default = null;
type = types.nullOr types.path;
- description = ''
+ description = lib.mdDoc ''
Path to the configuration file which maps the memory, IRQs
and ports used by the PCMCIA hardware.
'';