mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
qt: support gtk3 platform theme
This theme is part of qtbase and requires no extra packages. Co-authored-by: novenary <novenary@kwak.zip>
This commit is contained in:
parent
1e80a0b3d8
commit
1160454c79
1 changed files with 5 additions and 1 deletions
|
@ -57,7 +57,7 @@ in {
|
|||
|
||||
platformTheme = lib.mkOption {
|
||||
type = with lib.types;
|
||||
nullOr (enum [ "gtk" "gnome" "lxqt" "qtct" "kde" ]);
|
||||
nullOr (enum [ "gtk" "gtk3" "gnome" "lxqt" "qtct" "kde" ]);
|
||||
default = null;
|
||||
example = "gnome";
|
||||
relatedPackages = [
|
||||
|
@ -81,6 +81,10 @@ in {
|
|||
: Use GTK theme with
|
||||
[`qtstyleplugins`](https://github.com/qt/qtstyleplugins)
|
||||
|
||||
`gtk3`
|
||||
: Use [GTK3 integration](https://github.com/qt/qtbase/tree/dev/src/plugins/platformthemes/gtk3)
|
||||
for file picker dialogs, font and theme configuration
|
||||
|
||||
`gnome`
|
||||
: Use GNOME theme with
|
||||
[`qgnomeplatform`](https://github.com/FedoraQt/QGnomePlatform)
|
||||
|
|
Loading…
Reference in a new issue