nixos-config/home-manager/stvnliu/gtk.nix
Zhongheng Liu 33edc82a6b
chore: resolve warning messages
Updated program option definitions to resolve build warnings
2024-10-02 17:27:52 +03:00

24 lines
382 B
Nix

{
pkgs,
config,
...
}: {
gtk = {
enable = true;
iconTheme = {
package = pkgs.gruvbox-plus-icons;
name = "Gruvbox-Plus-Dark";
};
};
qt = {
enable = true;
platformTheme.name = "gtk";
style = {
package = pkgs.libsForQt5.breeze-qt5;
name = "breeze";
};
};
home.packages = with pkgs; [
libsForQt5.breeze-qt5
];
}