mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/qt: improve module documentation
This commit is contained in:
parent
39250f5df5
commit
38623a8003
1 changed files with 8 additions and 1 deletions
|
@ -41,7 +41,14 @@ in
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
qt = {
|
qt = {
|
||||||
enable = lib.mkEnableOption (lib.mdDoc "Qt theming configuration");
|
enable = lib.mkEnableOption "" // {
|
||||||
|
description = lib.mdDoc ''
|
||||||
|
Whether to enable Qt configuration, including theming.
|
||||||
|
|
||||||
|
Enabling this option is necessary for Qt plugins to work in the
|
||||||
|
installed profiles (e.g.: `nix-env -i` or `environment.systemPackages`).
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
platformTheme = lib.mkOption {
|
platformTheme = lib.mkOption {
|
||||||
type = with lib.types; nullOr (enum (lib.attrNames platformPackages));
|
type = with lib.types; nullOr (enum (lib.attrNames platformPackages));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue