nixos-config-priv/home/zhuangzi/common/optional/desktops/qt.nix

15 lines
367 B
Nix
Raw Normal View History

2024-06-07 11:37:13 +00:00
{ pkgs, ... }:
{
qt = {
enable = true;
platformTheme = "gtk2";
style = {
name = "gtk2";
# autodetected themes:
# adwaita, adwaita-dark, adwaita-highcontrast, adwaita-hightcontrastinverse, breeze, bb10bright, bb10dark, cde, cleanlooks, gtk2, motfi, plastique
#theme package
package = pkgs.qt6Packages.qt6gtk2;
};
};
}