mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
qt: fix qt.platformTheme = "gtk3"
This commit is contained in:
parent
147b5a5e1c
commit
ad83c154bd
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ in {
|
|||
(lib.optionals (platformTheme.package != null)
|
||||
(lib.toList platformTheme.package))
|
||||
(lib.optionals (platformTheme.name != null)
|
||||
platformPackages.${platformTheme.name})
|
||||
platformPackages.${platformTheme.name} or [ ])
|
||||
]) ++ (lib.optionals (cfg.style.package != null)
|
||||
(lib.toList cfg.style.package));
|
||||
|
||||
|
|
Loading…
Reference in a new issue