dotfiles/home/features/desktop/qt.nix

10 lines
169 B
Nix
Raw Normal View History

2023-10-01 20:23:20 +00:00
{ pkgs, cofig, ... }: {
qt = {
enable = true;
platformTheme = "gtk";
style = {
name = "gtk2";
package = pkgs.qt6Packages.qt6gtk2;
};
};
}