nixfiles/profiles/home-manager/gui/base/qt.nix

11 lines
165 B
Nix
Raw Normal View History

{pkgs, ...}: {
2021-12-21 14:00:09 +00:00
qt = {
enable = true;
2024-07-18 18:30:10 +01:00
platformTheme.name = "gtk";
2021-12-21 14:00:09 +00:00
style = {
name = "adwaita-dark";
package = pkgs.adwaita-qt;
};
};
2021-12-21 15:26:21 +00:00
}