nix-config/home/gburd/features/desktop/common/qt.nix

12 lines
159 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
{
qt = {
enable = true;
platformTheme = "gtk";
style = {
name = "gtk2";
package = pkgs.qt6gtk2;
};
};
}