nixos: cdemu service: mark up & tweak descriptions
This commit is contained in:
parent
e349333246
commit
45b86d6981
@ -9,19 +9,28 @@ in {
|
|||||||
programs.cdemu = {
|
programs.cdemu = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
default = false;
|
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 {
|
group = mkOption {
|
||||||
default = "cdrom";
|
default = "cdrom";
|
||||||
description = "Required group for users of cdemu";
|
description = ''
|
||||||
|
Group that users must be in to use <command>cdemu</command>.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
gui = mkOption {
|
gui = mkOption {
|
||||||
default = true;
|
default = true;
|
||||||
description = "Whether to install cdemu GUI (gCDEmu)";
|
description = ''
|
||||||
|
Whether to install the <command>cdemu</command> GUI (gCDEmu).
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
image-analyzer = mkOption {
|
image-analyzer = mkOption {
|
||||||
default = true;
|
default = true;
|
||||||
description = "Whether to install image analyzer";
|
description = ''
|
||||||
|
Whether to install the image analyzer.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user