nixos-config/home-manager/stvnliu/gtk.nix
Zhongheng Liu ba450b88ef
feat: font; qt theme; foot program
font: Change from Monocraft to JetBrains
qt: Change theme to Fusion (doesn't look like it works)
foot: enable proper home-manger foot server support
2024-10-26 12:47:26 +03:00

19 lines
318 B
Nix

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