lol

nixos/qt: improve module documentation

+8 -1
+8 -1
nixos/modules/config/qt.nix
··· 41 41 42 42 options = { 43 43 qt = { 44 - enable = lib.mkEnableOption (lib.mdDoc "Qt theming configuration"); 44 + enable = lib.mkEnableOption "" // { 45 + description = lib.mdDoc '' 46 + Whether to enable Qt configuration, including theming. 47 + 48 + Enabling this option is necessary for Qt plugins to work in the 49 + installed profiles (e.g.: `nix-env -i` or `environment.systemPackages`). 50 + ''; 51 + }; 45 52 46 53 platformTheme = lib.mkOption { 47 54 type = with lib.types; nullOr (enum (lib.attrNames platformPackages));