nixfiles/home/gui/base/qt.nix

11 lines
160 B
Nix
Raw Normal View History

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