about summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-07 00:47:18 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-07 00:47:18 +0200
commit45b86d69818e849ef6bf51c35e6c73a8d7e58074 (patch)
tree2f30148d302ad3f60b950ae68b3debc58b01e07b /nixos/modules/programs
parente349333246ce730419e96764157f03373bea6b04 (diff)
downloadnixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar.gz
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar.bz2
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar.lz
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar.xz
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.tar.zst
nixlib-45b86d69818e849ef6bf51c35e6c73a8d7e58074.zip
nixos: cdemu service: mark up & tweak descriptions
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/cdemu.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/nixos/modules/programs/cdemu.nix b/nixos/modules/programs/cdemu.nix
index d1b1915eea91..98df9b94380f 100644
--- a/nixos/modules/programs/cdemu.nix
+++ b/nixos/modules/programs/cdemu.nix
@@ -9,19 +9,28 @@ in {
     programs.cdemu = {
       enable = mkOption {
         default = false;
-        description = "Whether to enable cdemu for users of appropriate group (default cdrom)";
+        description = ''
+          <command>cdemu</command> for members of
+          <option>programs.cdemu.group</option>.
+        '';
       };
       group = mkOption {
         default = "cdrom";
-        description = "Required group for users of cdemu";
+        description = ''
+          Group that users must be in to use <command>cdemu</command>.
+        '';
       };
       gui = mkOption {
         default = true;
-        description = "Whether to install cdemu GUI (gCDEmu)";
+        description = ''
+          Whether to install the <command>cdemu</command> GUI (gCDEmu).
+        '';
       };
       image-analyzer = mkOption {
         default = true;
-        description = "Whether to install image analyzer";
+        description = ''
+          Whether to install the image analyzer.
+        '';
       };
     };
   };