tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/qt: improve module documentation
Thiago Kenji Okada
2 years ago
38623a80
39250f5d
+8
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
config
qt.nix
+8
-1
nixos/modules/config/qt.nix
···
41
41
42
42
options = {
43
43
qt = {
44
44
-
enable = lib.mkEnableOption (lib.mdDoc "Qt theming configuration");
44
44
+
enable = lib.mkEnableOption "" // {
45
45
+
description = lib.mdDoc ''
46
46
+
Whether to enable Qt configuration, including theming.
47
47
+
48
48
+
Enabling this option is necessary for Qt plugins to work in the
49
49
+
installed profiles (e.g.: `nix-env -i` or `environment.systemPackages`).
50
50
+
'';
51
51
+
};
45
52
46
53
platformTheme = lib.mkOption {
47
54
type = with lib.types; nullOr (enum (lib.attrNames platformPackages));