1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/misc/qt
Thiago Kenji Okada 0e2dc4be30
qt: add qt.style option (#1839)
This allows you to set a theme for Qt applications. For example, if you
want to use `adwaita-qt` theme to have uniform look between Gtk and Qt
applications, you can use it like this:

```nix
{
  qt = {
    enable = true;
    platformTheme = "gnome";
    style = {
      name = "adwaita";
      package = pkgs.adwaita-qt;
    };
  };
}
```
2021-03-03 22:20:17 -05:00
..
default.nix qt: add qt.style option (#1839) 2021-03-03 22:20:17 -05:00
qt-platform-theme-gnome.nix qt: add qt.style option (#1839) 2021-03-03 22:20:17 -05:00
qt-platform-theme-gtk.nix qt: add qt.style option (#1839) 2021-03-03 22:20:17 -05:00