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
19 lines
318 B
Nix
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];
|
|
}
|